-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.11 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
{
"name": "grays",
"version": "0.0.5",
"packageManager": "[email protected]",
"type": "module",
"main": "./esm/index.js",
"module": "./esm/index.js",
"types": "./esm/index.d.ts",
"files": [
"esm"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write .",
"build:lib": "tsc",
"prepack": "pnpm build:lib",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baboon-king/grays.git"
},
"bugs": "https://github.com/baboon-king/grays/issues",
"homepage": "https://github.com/baboon-king/grays#readme",
"keywords": [
"gray",
"grays",
"salute",
"respect"
],
"author": "BaboonKing",
"dependencies": {
"@unocss/reset": "0.58.5"
},
"devDependencies": {
"prettier": "3.2.5",
"typescript": "5.4.2",
"vite": "5.1.6"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}