-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 856 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
42
{
"name": "svelte-inline-css",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/mouse484/svelte-inline-css.git",
"author": "mouse_484 <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"dev": "yarn build && cd example && yarn && yarn dev",
"test": "vitest"
},
"dependencies": {
"csstype": "^3.0.8"
},
"devDependencies": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"semantic-release": "^17.4.3",
"typescript": "^4.2.4",
"vitest": "^0.31.4"
},
"files": [
"dist"
],
"keywords": [
"svelte",
"css",
"inline-css"
],
"release": {
"branches": [
"main"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}