-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.71 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "css-typed",
"version": "0.0.0-gitversion",
"description": "TypeScript declaration generator for CSS files",
"keywords": [
"CSS",
"modules",
"types",
"TypeScript"
],
"homepage": "https://github.com/connorjs/css-typed#readme",
"bugs": {
"url": "https://github.com/connorjs/css-typed/issues"
},
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Connor Sullivan",
"url": "https://github.com/connorjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/connorjs/css-typed.git"
},
"type": "module",
"engines": {
"node": ">=18"
},
"engineStrict": true,
"bin": {
"css-typed": "dist/main.js"
},
"files": [
"dist"
],
"main": "dist/main.js",
"scripts": {
"build": "node scripts/build.js",
"ci-build": "npm-run-all -l -p eslint prettier test tsc -s build",
"eslint": "eslint --format pretty .",
"eslint:fix": "eslint --format pretty . --fix",
"prepublishOnly": "npm run build",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"test": "vitest run",
"tsc": "tsc"
},
"dependencies": {
"@commander-js/extra-typings": "^12.1.0",
"commander": "^12.1.0",
"css-tree": "^2.3.1",
"glob": "^11.0.0",
"js-yaml": "^4.1.0",
"lilconfig": "^3.1.2",
"lodash.camelcase": "^4.3.0"
},
"devDependencies": {
"@connorjs/tsconfig": "~0.3.0",
"@types/css-tree": "^2.3.8",
"@types/js-yaml": "^4.0.9",
"@types/lodash.camelcase": "^4.3.9",
"@types/node": "^22.1.0",
"esbuild": "~0.23.0",
"eslint-config-connorjs": "^1.1.0",
"husky": "^9.1.4",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.8",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"type-fest": "^4.23.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}