-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.83 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.83 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
67
68
69
70
71
72
73
74
75
76
{
"name": "precinct",
"version": "13.0.0",
"description": "Unleash the detectives",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"scripts": {
"generate:types": "tsc --allowJs --declaration --emitDeclarationOnly --declarationDir . index.js",
"check:types": "npm run generate:types && git diff HEAD --exit-code index.d.ts",
"lint": "xo",
"fix": "xo --fix",
"vitest": "vitest",
"test": "npm run lint && npm run check:types && vitest run",
"test:ci": "vitest run --coverage"
},
"bin": {
"precinct": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dependents/node-precinct.git"
},
"keywords": [
"modules",
"amd",
"commonjs",
"es6",
"sass",
"less",
"vue",
"detective",
"dependencies"
],
"author": "Joel Kemp <joel@mrjoelkemp.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dependents/node-precinct/issues"
},
"engines": {
"node": ">=20.19.0 || >=22.12.0"
},
"files": [
"bin/cli.js",
"index.js",
"index.d.ts"
],
"homepage": "https://github.com/dependents/node-precinct",
"dependencies": {
"@dependents/detective-less": "^6.0.0",
"commander": "^14.0.3",
"detective-amd": "^7.0.0",
"detective-cjs": "^7.0.0",
"detective-es6": "^6.0.0",
"detective-postcss": "^9.0.0",
"detective-sass": "^7.0.0",
"detective-scss": "^6.0.0",
"detective-stylus": "^6.0.0",
"detective-typescript": "^15.0.0",
"detective-vue2": "^3.0.0",
"module-definition": "^7.0.0",
"node-source-walk": "^8.0.0",
"postcss": "^8.5.15",
"typescript": "^6.0.3"
},
"devDependencies": {
"@babel/parser": "^7.29.3",
"@vitest/coverage-v8": "^4.1.7",
"vitest": "^4.1.7",
"xo": "^2.0.2"
}
}