-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.09 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
50
51
{
"name": "caligula",
"version": "0.1.2",
"license": "MIT",
"description": "Optimize CSS stylesheets for your Svelte apps",
"author": "Eric Liu (https://github.com/metonym)",
"main": "lib/index.js",
"types": "lib/index.d.js",
"engines": {
"node": ">=10",
"yarn": ">=1"
},
"scripts": {
"develop": "tsnd --respawn src",
"build": "tsc",
"prepublishOnly": "tsc"
},
"dependencies": {
"chalk": "^4.0.0",
"cssnano": "^4.1.10",
"cssom": "^0.4.4",
"fast-glob": "^3.2.2",
"svelte": "^3.20.1"
},
"devDependencies": {
"@types/cssnano": "^4.0.0",
"@types/cssom": "^0.4.0",
"@types/node": "^13.9.6",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"prettier": {
"printWidth": 120
},
"repository": {
"type": "git",
"url": "https://github.com/metonym/caligula.git"
},
"homepage": "https://github.com/metonym/caligula",
"bugs": "https://github.com/metonym/caligula/issues",
"keywords": [
"svelte",
"stylesheet",
"css classes",
"optimize",
"prototyping"
],
"files": [
"lib"
]
}