-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
41 lines (41 loc) · 1015 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
40
41
{
"name": "mistcss",
"version": "1.0.2",
"description": "",
"exports": "./lib/index.js",
"scripts": {
"build": "rm -rf lib && tsc",
"format": "prettier --write .",
"lint": "eslint",
"test": "node --import tsx --test src/*.test.ts && npm run build && postcss test/mist.css",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"files": [
"lib"
],
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/typicode/mistcss.git"
},
"author": "typicode <[email protected]>",
"license": "MIT",
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/node": "^20.11.19",
"@types/postcss-import": "^14.0.3",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"prettier": "^3.2.5",
"tsx": "^4.19.2",
"typescript": "^5.3.3",
"vitest": "^1.5.0"
},
"dependencies": {
"postcss-import": "^16.1.0",
"postcss-selector-parser": "^6.1.2"
}
}