-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.08 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
52
53
{
"name": "shiraha-ve",
"type": "module",
"version": "0.0.6",
"private": true,
"description": "Material 3-inspired Classless CSS Framework.",
"author": "藍+85CD",
"license": "WTFPL",
"homepage": "https://shiraha.js.org",
"repository": {
"type": "git",
"url": "https://github.com/importantimport/shiraha.git",
"directory": "packages/shiraha"
},
"bugs": "https://github.com/importantimport/shiraha/issues",
"keywords": [
"classless",
"css",
"theme",
"web-design",
"reset",
"style"
],
"exports": {
".": "./dist/shiraha.css",
"./*.css": "./dist/*.css",
"./*.js": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js"
},
"./dist/*.js": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js"
},
"./dist/*.css": "./dist/*.css",
"./src/*": "./src/*"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch"
},
"devDependencies": {
"open-props": "^1.6.11"
}
}