-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "sidewind",
"version": "8.0.0",
"description": "Sidewind - Tailwind but for state",
"main": "dist/sidewind.umd.development.js",
"typings": "dist/index.d.ts",
"devDependencies": {
"@types/jest": "^27.4.0",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "https://github.com/survivejs/sidewind.git"
},
"bugs": {
"url": "https://github.com/survivejs/sidewind/issues"
},
"homepage": "https://sidewind.js.org/",
"scripts": {
"build": "tsdx build --format umd",
"install_gustwind": "deno install -A --unstable --no-check -f https://deno.land/x/[email protected]/cli.ts",
"site:build": "deno task build",
"vercel:build": "deno task build",
"start": "deno task start",
"lint": "tsdx lint src test",
"test": "tsdx test",
"prepare": "npm run build"
},
"files": [
"dist/*"
],
"keywords": [
"state-management",
"tailwind"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"author": "Juho Vepsäläinen",
"license": "MIT"
}