-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1 KB
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
{
"name": "ada-ui",
"version": "6.0.1",
"scripts": {
"dev": "concurrently -n scss,serve 'sass scss:css --watch --embed-source-map' 'alive-server .'",
"postdev": "git checkout css/*",
"build": "rm -rf css && sass scss:css -s compressed --no-source-map",
"changeset": "changeset",
"remove-snapshot": "f(){ if [ -z \"$1\" ]; then echo \"Error: No tag name specified, exiting.\"; exit 1; fi; npm dist-tag rm ada-ui $1; }; f",
"version": "npm run build && changeset version"
},
"bin": "install.js",
"type": "module",
"license": "MIT",
"exports": {
".": "./css/ada.css",
"./blue": "./css/ada.blue.css",
"./green": "./css/ada.green.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tklepzig/Ada.git"
},
"author": "Thomas Klepzig",
"bugs": {
"url": "https://github.com/tklepzig/Ada/issues"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"alive-server": "^1.2.9",
"concurrently": "^8.2.2",
"sass": "^1.42.1"
}
}