-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.72 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.72 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@projectwallace/css-parser",
"version": "0.13.11",
"description": "High-performance CSS lexer and parser, optimized for CSS inspection and analysis",
"keywords": [
"ast",
"css",
"lexer",
"parser",
"tokenizer"
],
"homepage": "https://github.com/projectwallace/css-parser",
"license": "MIT",
"author": "Bart Veneman <bart@projectwallace.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/projectwallace/css-parser.git"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json",
"./tokenizer": {
"types": "./dist/tokenize.d.ts",
"import": "./dist/tokenize.js"
},
"./parse": {
"types": "./dist/parse.d.ts",
"import": "./dist/parse.js"
},
"./parse-selector": {
"types": "./dist/parse-selector.d.ts",
"import": "./dist/parse-selector.js"
},
"./parse-atrule-prelude": {
"types": "./dist/parse-atrule-prelude.d.ts",
"import": "./dist/parse-atrule-prelude.js"
},
"./parse-declaration": {
"types": "./dist/parse-declaration.d.ts",
"import": "./dist/parse-declaration.js"
},
"./parse-value": {
"types": "./dist/parse-value.d.ts",
"import": "./dist/parse-value.js"
},
"./parse-anplusb": {
"types": "./dist/parse-anplusb.d.ts",
"import": "./dist/parse-anplusb.js"
},
"./parse-dimension": {
"types": "./dist/parse-dimension.d.ts",
"import": "./dist/parse-dimension.js"
},
"./walker": {
"types": "./dist/walk.d.ts",
"import": "./dist/walk.js"
},
"./nodes": {
"types": "./dist/constants.d.ts",
"import": "./dist/constants.js"
}
},
"scripts": {
"test": "vitest",
"test-coverage": "vitest --coverage",
"test-build": "npm run build && vitest run --config vitest.config.build.ts",
"build": "tsdown",
"benchmark": "npm run build && node benchmark/index.ts",
"benchmark:memory": "npm run build && node --expose-gc benchmark/memory.ts",
"lint": "oxlint --config .oxlintrc.json && oxfmt --check",
"check": "tsc --noEmit",
"knip": "knip",
"precommit": "npm run test -- --run; npm run lint; npm run check"
},
"devDependencies": {
"@codecov/rollup-plugin": "^1.9.1",
"@projectwallace/preset-oxlint": "^0.0.7",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.8",
"bootstrap": "^5.3.8",
"css-tree": "^3.1.0",
"knip": "^6.0.1",
"oxfmt": "^0.41.0",
"oxlint": "^1.28.0",
"postcss": "^8.5.6",
"publint": "^0.3.18",
"tailwindcss": "^2.2.8",
"tinybench": "^6.0.0",
"tsdown": "^0.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
},
"issues": "https://github.com/projectwallace/css-parser/issues"
}