-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.62 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
{
"name": "@geneontology/web-components",
"version": "0.0.1",
"description": "Web components for display of Gene Ontology annotations",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/web-components/web-components.esm.js",
"exports": {
".": {
"import": "./dist/web-components/web-components.esm.js",
"require": "./dist/web-components/web-components.cjs.js"
},
"./loader": {
"import": "./loader/index.js",
"require": "./loader/index.cjs",
"types": "./loader/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/ionic-team/stencil-component-starter.git"
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build && npm run format",
"format": "prettier --write --log-level warn .",
"lint": "eslint src",
"start": "stencil build --dev --watch --serve --no-open",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@stencil/core": "^4.22.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"prettier": "3.3.3",
"puppeteer": "^23.9.0",
"typescript": "5.5.3",
"typescript-eslint": "^8.15.0"
},
"license": "MIT"
}