forked from reworkcss/css
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
61 lines (61 loc) · 1.48 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
{
"name": "@adobe/css-tools",
"version": "4.4.1",
"description": "CSS parser / stringifier",
"source": "src/index.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
"import": "./dist/index.mjs",
"types": "./dist/types.d.ts",
"require": "./dist/index.cjs"
},
"types": "./dist/types.d.ts",
"type": "module",
"files": [
"dist",
"Readme.md"
],
"devDependencies": {
"@parcel/packager-ts": "2.13.0",
"@parcel/transformer-typescript-types": "2.13.0",
"@types/benchmark": "^2.1.1",
"@types/bytes": "^3.1.1",
"@types/jest": "^29.5.3",
"@types/node": "^22.7.5",
"benchmark": "^2.1.4",
"bytes": "^3.1.0",
"gts": "^6.0.2",
"jest": "^29.6.2",
"parcel": "^2.13.0",
"ts-jest": "^29.1.1",
"typescript": "^5.0.2"
},
"scripts": {
"benchmark": "node benchmark/index.mjs",
"test": "jest",
"clean": "gts clean && rm -rf ./dist",
"build": "parcel build && node ./utils/fix-type-generation.cjs",
"fix": "gts fix",
"lint": "gts lint",
"prepack": "npm run build",
"prepare": "npm run build",
"pretest": "npm run build",
"posttest": "npm run lint"
},
"author": "TJ Holowaychuk <[email protected]>",
"contributors": [
"Jean-Philippe Zolesio <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adobe/css-tools.git"
},
"keywords": [
"css",
"parser",
"stringifier",
"stylesheet"
]
}