-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.5 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
58
59
60
{
"name": "@assertlabs/cli",
"version": "0.1.22",
"type": "module",
"main": "dist/cli.js",
"exports": {
".": "./dist/cli.js",
"./core": {
"types": "./dist/core.d.ts",
"import": "./dist/core.js"
}
},
"bin": {
"assert": "bin/assert.js"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Assert-Labs/cli.git"
},
"homepage": "https://github.com/Assert-Labs/cli#readme",
"bugs": {
"url": "https://github.com/Assert-Labs/cli/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "node scripts/build.mjs esm",
"build:sea": "node scripts/build.mjs sea",
"dev": "tsx src/cli.ts",
"typecheck": "tsc --noEmit -p tsconfig.test.json",
"test": "vitest run",
"test:live": "vitest run --config vitest.live.config.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "pnpm build"
},
"files": [
"dist/cli.js",
"dist/core.js",
"dist/core.d.ts",
"dist/schema.d.ts",
"dist/tool-actions.d.ts",
"bin"
],
"author": "Assert Labs",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.0",
"esbuild": "^0.28.1",
"smol-toml": "^1.7.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"vitest": "^4.1.8"
},
"packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a"
}