-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.36 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
54
55
56
57
58
{
"name": "@warp-ds/core",
"repository": "git@github.com:warp-ds/core.git",
"description": "Shared business logic for JS implementations of Warp Design System",
"version": "1.1.8",
"type": "module",
"exports": {
"./*": "./dist/*/index.js"
},
"typesVersions": {
"*": {
"attention": [
"./dist/attention/index.d.ts"
],
"breadcrumbs": [
"./dist/breadcrumbs/index.d.ts"
],
"slider": [
"./dist/slider/index.d.ts"
]
}
},
"files": [
"dist"
],
"peerDependencies": {
"@floating-ui/dom": "1.6.x"
},
"scripts": {
"build": "tsc",
"commit": "cz",
"lint:check": "eslint . --ext ts --ignore-path .gitignore",
"lint": "eslint . --fix --ext ts --ignore-path .gitignore",
"test": "echo \"no tests\""
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@typescript-eslint/eslint-plugin": "7.15.0",
"@typescript-eslint/parser": "7.15.0",
"@warp-ds/eslint-config": "1.0.5",
"cz-conventional-changelog": "3.3.0",
"prettier": "3.3.2",
"semantic-release": "24.0.0",
"typescript": "5.5.3"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}