-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.75 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
{
"name": "@chialab/quantum",
"description": "Custom elements composition made easy",
"version": "1.1.1",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chialab/quantum"
},
"bugs": {
"url": "https://github.com/chialab/quantum/issues"
},
"homepage": "https://www.chialab.io/p/quantum",
"author": "Chialab <[email protected]> (https://www.chialab.it)",
"files": [
"src",
"types",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "vite",
"preview": "vite preview",
"test": "vitest test --coverage",
"test:browser": "vitest test --browser chrome",
"lint": "prettier --check . && eslint . --cache",
"bench": "vitest bench",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepack": "tsc"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@chialab/eslint-config": "^4.0.3",
"@chialab/prettier-config": "^1.2.2",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@testing-library/svelte": "^5.1.0",
"@vitest/browser": "^2.0.0",
"@vitest/coverage-istanbul": "^2.1.4",
"eslint": "^8.44.0",
"lit": "^2.7.5",
"preact": "^10.15.1",
"prettier": "^3.0.0",
"publint": "^0.1.15",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"svelte": "^5.0.0",
"typescript": "^5.0.2",
"uhtml": "^3.2.1",
"vite": "^5.0.0",
"vitepress": "^1.0.0",
"vitest": "^2.0.0",
"vue": "^3.3.4",
"webdriverio": "^9.2.11"
}
}