-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.58 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.58 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
61
62
63
64
65
66
{
"name": "@watts-ai/cli-ts",
"version": "0.14.3",
"homepage": "https://github.com/watts-ai/cli.ts",
"repository": "https://github.com/watts-ai/cli.ts",
"license": "MIT",
"author": "Watts AI",
"main": "dist/cjs/index.js",
"typings": "dist/cjs/index.d.ts",
"module": "dist/esm/index.js",
"files": [
"dist",
"batteries"
],
"scripts": {
"build": "tsc && tsc --project ./tsconfig.esm.json",
"lint": "biome check src test example",
"now-build": "mdbook build --dest-dir=public",
"start": "npm run build -- --watch",
"prepublishOnly": "rm -rf dist && npm run build && npm test",
"test": "vitest",
"ts-node": "tsx",
"changeset:version": "changeset version && npm install --no-lockfile",
"changeset:publish": "npm run build && changeset publish"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"sideEffects": false,
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"chalk": "^5.4.1",
"debug": "^4.4.1",
"didyoumean": "^1.2.2",
"strip-ansi": "^7.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "2.29.4",
"@types/debug": "4.1.12",
"@types/didyoumean": "1.2.3",
"@types/fs-extra": "11.0.4",
"@types/node-fetch": "2.6.12",
"@types/request": "2.48.12",
"cargo-mdbook": "0.4.4",
"docs-ts": "0.8.0",
"execa": "9.6.0",
"fs-extra": "11.3.0",
"husky": "9.1.7",
"infer-types": "0.0.2",
"node-fetch": "3.3.2",
"request": "2.88.2",
"tempy": "3.1.0",
"tsx": "^4.19.4",
"typedoc": "0.28.5",
"typescript": "5.8.3",
"vitest": "3.2.4"
}
}