-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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
{
"name": "@bengineer.dev/ccwc",
"version": "1.0.5",
"description": "wc but now in javascript!",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/BenFranzi/ccwc",
"bugs": {
"url": "https://github.com/BenFranzi/ccwc/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BenFranzi/ccwc.git"
},
"scripts": {
"start": "build/bin.cjs",
"dev": "node --experimental-specifier-resolution=node --loader ts-node/esm src/bin.ts",
"test": "jest",
"lint": "eslint src/**/*",
"build": "node --experimental-specifier-resolution=node --loader ts-node/esm build.ts",
"deploy": "npm publish --access public",
"local:link": "npm link",
"local:unlink": "npm unlink @bengineer.dev/ccwc && npm rm --global @bengineer.dev/ccwc"
},
"bin": {
"ccwc": "build/bin.cjs"
},
"files": [
"build/bin.cjs"
],
"devDependencies": {
"@bengineer.dev/eslint-config-core": "^1.0.3",
"@jest/globals": "^29.7.0",
"@swc/core": "^1.4.11",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.3",
"@typescript-eslint/parser": "^7.5.0",
"esbuild": "0.20.2",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
}
},
"engines": {
"node": ">=20.0.0"
}
}