-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.88 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@websublime/vitamin",
"author": {
"email": "[email protected]",
"name": "miguelramos",
"url": "https://github.com/miguelramos"
},
"bugs": {
"url": "https://github.com/websublime/vitamin/issues"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:websublime/vitamin.git"
},
"engines": {
"node": ">=20"
},
"private": true,
"packageManager": "[email protected]",
"version": "1.0.0",
"description": "",
"scripts": {
"changeset": "changeset",
"lint": "pnpm --filter \"@websublime/*\" lint",
"build": "pnpm --filter \"@websublime/*\" build",
"version": "changeset version",
"release": "changeset publish",
"status": "changeset status --since=main",
"empty": "changeset --empty",
"snapshot:version": "changeset version --snapshot",
"snapshot:publish": "changeset publish --snapshot --tag canary",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"components",
"lit",
"ui",
"lib"
],
"license": "ISC",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@changesets/get-github-info": "^0.5.2",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-unicorn": "^47.0.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.2.0",
"yorkie": "2.0.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,mjs,ts,tsx}": [
"eslint --cache --fix"
]
}
}