-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 891 Bytes
/
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
{
"name": "ankh-css",
"version": "1.4.0",
"description": "Ankhorage CSS Tools",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tsc",
"build": "tsup lib/index.ts --format cjs,esm --dts",
"prepublish": "pnpm run build",
"test": "node --import tsx --test lib/test/test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artiphishle/ankh-css.git"
},
"keywords": [
"ankhorage",
"ankh",
"css",
"convert",
"parse"
],
"author": "artiphishle",
"license": "MIT",
"bugs": {
"url": "https://github.com/artiphishle/ankh-css/issues"
},
"homepage": "https://github.com/artiphishle/ankh-css#readme",
"devDependencies": {
"@types/node": "^20.14.11",
"tsup": "^8.1.2",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
},
"dependencies": {
"cssnano": "^7.0.4"
}
}