-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.62 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "dabbjs",
"author": "Diogny A. B. <diognyab@outlook.com>",
"version": "0.0.32",
"description": "general javascript library",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/Diogny/dabbjs",
"bugs": {
"url": "https://github.com/Diogny/dabbjs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Diogny/dabbjs.git"
},
"keywords": [
"library",
"package",
"dabberio",
"typescript",
"esbuild"
],
"files": [
"dist/lib/*",
"dist/index.d.ts",
"dist/index.js"
],
"scripts": {
"preinstall": "node -e \"!process.env.npm_config_user_agent.startsWith('pnpm/') && !console.log('Use \\`npx pnpm install\\` to install dependencies in this repository\\n') && process.exit(1)\"",
"cli": "ts-node src/cli.ts",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"clean": "rd /Q /S dist",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/index.ts",
"build": "pnpm clean && tsc -p tsconfig.json",
"esbuild-browser:dev": "esbuild src/index.ts --bundle --outfile=dist/dabbjs.js",
"esbuild-browser": "esbuild src/index.ts --bundle --minify --sourcemap=external --outfile=dist/dabbjs.min.js"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^24.7.2",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"esbuild": "^0.25.10",
"eslint": "^9.37.0",
"jest": "^30.2.0",
"jsdom": "^27.0.0",
"tslib": "^2.8.1",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typedoc": "^0.28.14",
"typescript": "^5.9.3"
}
}