-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.38 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
{
"name": "node-script",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "vitest run",
"test:fast": "vitest run",
"test:watch": "vitest",
"build": "rimraf dist && rspack build && tsx generate-bin.ts",
"build:dev": "rimraf dist && cross-env MINIFY=false rspack build && tsx generate-bin.ts",
"build:standalone": "rimraf dist && rspack build && cross-env COPY_JS=true tsx generate-bin.ts",
"dev": "tsx src/hello.ts",
"typecheck": "tsc --noEmit",
"typecheck:fast": "tsgo --noEmit",
"check": "biome check .",
"check:fix": "biome check --write .",
"biome:fixAll": "pnpm run check:fix",
"qa": "pnpm run typecheck:fast && pnpm run check && pnpm run test:fast"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@rspack/cli": "^1.7.6",
"@rspack/core": "^1.7.6",
"@types/inquirer": "^9.0.9",
"@types/json-diff": "^1.0.3",
"@types/minimatch": "^6.0.0",
"@types/node": "^25.5.0",
"cross-env": "^10.1.0",
"execa": "^9.6.1",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"private": "true",
"dependencies": {
"commander": "^14.0.3",
"fast-glob": "^3.3.3",
"gray-matter": "^4.0.3",
"inquirer": "^9.3.8",
"json-diff": "^1.0.6",
"minimatch": "^10.2.4"
}
}