-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 1.98 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 1.98 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
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "tailwind-csstree",
"version": "0.3.1",
"description": "CSSTree syntax for parsing Tailwind custom syntax.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18.18"
},
"publishConfig": {
"access": "public"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"!(*.js)": [
"prettier --write --ignore-unknown"
]
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
},
"scripts": {
"build": "tsc",
"lint": "eslint src/ tests/",
"lint:fix": "eslint --fix src/ tests/",
"fmt": "prettier --write .",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test:unit": "mocha tests/*.{js,mjs} --exit --forbid-only",
"test:jsr": "npx jsr@latest publish --dry-run",
"test:attw": "attw --pack --profile esm-only",
"test": "npm run test:unit && npm run test:attw"
},
"repository": {
"type": "git",
"url": "git+https://github.com/humanwhocodes/tailwind-csstree.git"
},
"keywords": [
"csstree",
"tailwind",
"tailwindcss",
"css",
"css-tree"
],
"author": "Nicholas C. Zaks",
"license": "Apache-2.0",
"peerDependencies": {
"@eslint/css": ">=1.0.0"
},
"peerDependenciesMeta": {
"@eslint/css": {
"optional": true
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@eslint/css": "^1.0.0",
"@eslint/css-tree": "^3.6.0",
"@eslint/js": "^9.0.0",
"@tsconfig/node16": "^16.1.1",
"@types/mocha": "^10.0.3",
"cross-env": "^7.0.3",
"eslint": "^9.26.0",
"lint-staged": "15.4.3",
"mocha": "^11.0.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"yorkie": "2.0.0"
}
}