-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.34 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
72
73
74
75
76
77
78
79
{
"name": "@chialab/dna",
"version": "4.1.2",
"description": "Progressive Web Components",
"type": "module",
"main": "dist/dna.js",
"module": "dist/dna.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./dist/dna.js"
},
"./jsx-runtime": {
"types": "./types/jsx-runtime.d.ts",
"default": "./dist/jsx-runtime.js"
},
"./jsx-dev-runtime": {
"types": "./types/jsx-runtime.d.ts",
"default": "./dist/jsx-runtime.js"
}
},
"files": [
"dist",
"types",
"LICENSE",
"README.md"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chialab/dna"
},
"bugs": {
"url": "https://github.com/chialab/dna/issues"
},
"homepage": "https://chialab.github.io/dna/",
"author": "Chialab <[email protected]> (https://www.chialab.it)",
"scripts": {
"build": "rimraf 'dist' 'types' && yarn types && esbuild dna=src/index.ts jsx-runtime=src/jsx-runtime.ts --splitting --outdir=dist --out-extension:.js=.js --format=esm --bundle --packages=external --sourcemap",
"types": "tsc",
"test": "yarn test:typings && yarn test:browser && yarn test:node",
"test:typings": "tsc -p test/typings --noEmit",
"test:browser": "vitest run --browser",
"test:browserstack": "vitest run --config vitest.browserstack.ts",
"test:node": "vitest run",
"lint": "prettier --check . && eslint src test",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepack": "yarn build && publint"
},
"dependencies": {
"@chialab/quantum": "^1.0.0",
"htm": "^3.0.3"
},
"devDependencies": {
"@babel/runtime": "^7.14.0",
"@changesets/cli": "^2.22.0",
"@chialab/eslint-config": "^4.0.0",
"@chialab/prettier-config": "^1.2.2",
"@chialab/vitest-provider-browserstack": "^0.19.0-beta.0",
"@vitest/browser": "^2.0.0",
"@vitest/coverage-istanbul": "^2.0.0",
"@vitest/coverage-v8": "^2.0.0",
"@vitest/ui": "^2.0.0",
"esbuild": "^0.23.0",
"eslint": "^8.0.0",
"eslint-plugin-jsdoc": "^48.0.0",
"playwright": "^1.38.1",
"prettier": "^3.0.3",
"publint": "^0.2.3",
"rimraf": "^6.0.0",
"tslib": "^2.6.2",
"typescript": "^5.0.0",
"vitepress": "^1.0.0",
"vitest": "^2.0.0"
}
}