-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
35 lines (35 loc) · 1.19 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
{
"name": "@codidact/co-design",
"version": "0.12.6",
"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": {
"build_sass": "sass src:dist --style=compressed",
"build_js": "tsc-bundle tsconfig.json",
"build_docs": "npx @11ty/eleventy",
"symlink_sass": "mkdir -p docs && (readlink docs/assets || ln -s $(pwd)/assets docs/assets) && mkdir -p dist && (readlink docs/dist || ln -s $(pwd)/dist docs/dist)",
"symlink_js": "mkdir -p js && (readlink docs/js || ln -s $(pwd)/js docs/js)",
"build": "npm run -s build_sass && npm run -s build_js && npm run -s symlink_sass && npm run -s symlink_js && npm run -s build_docs",
"server": "npx @11ty/eleventy --serve"
},
"dependencies": {
"sass": "^1.34.1"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"typescript": "^3.9.9",
"typescript-bundle": "^1.0.17"
}
}