-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.14 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
{
"name": "@azerothian/sandwich",
"version": "1.0.1",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"postpublish": "yalc restore --all && pnpm install",
"test": "jest",
"prepublishOnly": "pnpm run build; echo next; yalc retreat --all",
"build": "rm -Rf ./lib || true; run-p build:*",
"build:main": "swc src --out-dir lib --strip-leading-paths -s",
"build:types": "tsc -p tsconfig.types.json",
"build:copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" lib"
},
"files": [
"src/**/*",
"lib/**/*",
"!**/*.test.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"devDependencies": {
"@jest/globals": "^29.7.0",
"@swc/cli": "^0.4.0",
"@swc/core": "^1.11.21",
"@swc/jest": "^0.2.37",
"@types/debug": "^4.1.12",
"@types/node": "^20.17.30",
"copyfiles": "^2.4.1",
"jest": "^29.7.0",
"npm-run-all2": "^6.2.6",
"typescript": "^5.8.3"
},
"dependencies": {
"debug": "^4.4.0",
"deepmerge": "^4.3.1",
"is-plain-object": "^5.0.0",
"uuid": "^9.0.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core"
]
}
}