forked from typicode/mistcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.02 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
{
"name": "mistcss",
"version": "0.5.5",
"description": "",
"type": "module",
"bin": {
"mistcss": "lib/bin.js"
},
"exports": {
"./core": {
"types": "./lib/core.d.ts",
"import": "./lib/core.js"
}
},
"scripts": {
"build": "rm -rf lib && tsc",
"format": "prettier --write .",
"lint": "eslint",
"test": "vitest",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"files": [
"lib"
],
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/typicode/mistcss.git"
},
"author": "typicode <typicode@gmail.com>",
"license": "MIT",
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"@types/node": "^20.11.19",
"@types/stylis": "^4.2.5",
"@typicode/eslint-config": "^2.0.0",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vitest": "^1.5.0"
},
"dependencies": {
"chokidar": "^3.6.0",
"globby": "^14.0.1",
"stylis": "^4.3.2"
}
}