forked from openlabs-dev/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "openui-org",
"type": "module",
"version": "0.7.0",
"description": "Open UI. OpenLand's official framework design system 🎨",
"author": "Open Land",
"license": "MIT",
"homepage": "https://github.com/open-land/design-system#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/open-land/design-system.git"
},
"bugs": {
"url": "https://github.com/open-land/design-system/issues"
},
"keywords": [
"ui",
"design system",
"open"
],
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint .",
"prepare": "husky"
},
"devDependencies": {
"@antfu/eslint-config": "2.8.3",
"@changesets/cli": "2.27.1",
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@types/node": "20.11.28",
"eslint": "8.57.0",
"eslint-plugin-format": "0.1.0",
"husky": "9.0.11",
"lint-staged": "15.2.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "eslint . --fix"
}
}