This repository was archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.29 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.29 KB
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
{
"name": "@observerly/polaris",
"version": "0.65.0",
"repository": {
"type": "git",
"url": "https://github.com/observerly/polaris"
},
"prepublish": "tsc",
"publishConfig": {
"registry": "https://npm.pkg.github.com/observerly"
},
"files": [
"dist"
],
"main": "./dist/polaris.umd.js",
"module": "./dist/polaris.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/polaris.es.js",
"require": "./dist/polaris.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@rollup/plugin-typescript": "^11.1.0",
"@vitest/coverage-c8": "^0.29.8",
"c8": "^7.13.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.8",
"path": "^0.12.7",
"prettier": "2.5.1",
"rollup": "^3.20.2",
"tslib": "^2.5.0",
"typescript": "4.9.5",
"vite": "^4.2.1",
"vitest": "^0.29.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix",
"git add -A ."
]
}
}