-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "@codidact/co-design",
"version": "0.12.9",
"description": "Co-Design is the design and component framework for Codidact",
"author": "luap42",
"repository": {
"type": "git",
"url": "git+https://github.com/codidact/co-design.git"
},
"keywords": [
"codidact"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/codidact/co-design/issues"
},
"homepage": "https://github.com/codidact/co-design#readme",
"scripts": {
"css_build": "sass src:dist --style=compressed",
"js_build": "tsc-bundle tsconfig.json",
"docs_build": "npx @11ty/eleventy",
"watch:sass": "sass src:dist --style=compressed --watch",
"watch:ts": "tsc-bundle tsconfig.json --watch",
"watch:docs": "npx @11ty/eleventy --serve --incremental",
"build": "npm run -s css_build && npm run -s js_build && npm run -s docs_build",
"dev": "npm-run-all --parallel watch:sass watch:ts watch:docs"
},
"dependencies": {
"sass": "^1.34.1"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"npm-run-all": "^4.1.5",
"typescript": "^3.9.9",
"typescript-bundle": "^1.0.17"
},
"files": [
"dist/",
"js/",
"assets/fonts/"
]
}