-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 3.24 KB
/
package.json
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "zurk",
"version": "0.9.3",
"description": "A generic process spawner",
"type": "module",
"main": "target/cjs/index.cjs",
"exports": {
".": {
"types": "./target/dts/index.d.ts",
"require": "./target/cjs/index.cjs",
"import": "./target/esm/index.mjs",
"default": "./target/esm/index.mjs"
},
"./error": {
"types": "./target/dts/error.d.ts",
"require": "./target/cjs/error.cjs",
"import": "./target/esm/error.mjs",
"default": "./target/esm/error.mjs"
},
"./spawn": {
"types": "./target/dts/spawn.d.ts",
"require": "./target/cjs/spawn.cjs",
"import": "./target/esm/spawn.mjs",
"default": "./target/esm/spawn.mjs"
},
"./util": {
"types": "./target/dts/util.d.ts",
"require": "./target/cjs/util.cjs",
"import": "./target/esm/util.mjs",
"default": "./target/esm/util.mjs"
},
"./zurk": {
"types": "./target/dts/zurk.d.ts",
"require": "./target/cjs/zurk.cjs",
"import": "./target/esm/zurk.mjs",
"default": "./target/esm/zurk.mjs"
}
},
"module": "target/esm/index.mjs",
"types": "target/dts/index.d.ts",
"files": [
"target/cjs",
"target/esm",
"target/dts"
],
"scripts": {
"build": "concurrently 'npm:build:*'",
"build:js": "node ./src/scripts/build.mjs --entry='./src/main/ts/index.ts:./src/main/ts/util.ts:./src/main/ts/spawn.ts:./src/main/ts/zurk.ts:./src/main/ts/error.ts'",
"build:dts": "tsc --emitDeclarationOnly --outDir target/dts",
"build:docs": "typedoc --options src/main/typedoc",
"build:stamp": "npx buildstamp",
"build:jsr": "node ./src/scripts/build-jsr.mjs",
"test": "concurrently 'npm:test:*'",
"test:target": "git diff --exit-code --quiet || (echo 'Uncommitted changes' && exit 1)",
"test:lint": "eslint -c src/test/lint/.eslintrc.json src",
"test:unit": "c8 -r lcov -r text -o target/coverage -x src/scripts -x src/test -x target node --loader ts-node/esm --experimental-specifier-resolution=node src/scripts/test.mjs",
"test:smoke:esm": "node ./src/test/smoke/invoke.test.mjs",
"test:smoke:cjs": "node src/test/smoke/invoke.test.cjs",
"test:jsr": "jsr publish --dry-run",
"test:audit": "npm audit",
"publish:draft": "npm run build && npm publish --no-git-tag-version",
"postrelease": "node src/scripts/build-jsr.mjs && jsr publish --allow-dirty"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webpod/zurk.git"
},
"author": "Anton Golub <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/webpod/zurk/issues"
},
"homepage": "https://github.com/webpod/zurk#readme",
"devDependencies": {
"@types/node": "^22.10.1",
"c8": "^10.1.2",
"concurrently": "^9.1.0",
"esbuild": "^0.24.0",
"esbuild-node-externals": "^1.15.0",
"esbuild-plugin-entry-chunks": "^0.1.15",
"esbuild-plugin-extract-helpers": "^0.0.6",
"esbuild-plugin-transform-hook": "^0.1.1",
"esbuild-plugin-utils": "^0.1.0",
"eslint": "^8.57.0",
"eslint-config-qiwi": "^2.1.6",
"fast-glob": "^3.3.2",
"jsr": "^0.13.2",
"minimist": "^1.2.8",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typedoc": "^0.27.2",
"typescript": "^5.7.2"
}
}