-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "@stacks/connect-ui",
"version": "6.5.0",
"license": "MIT",
"scripts": {
"build": "stencil build --docs",
"dev": "stencil build --dev --watch",
"generate": "stencil generate",
"prepublishOnly": "npm run build",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@stencil/core": "^2.17.1"
},
"devDependencies": {
"@stencil/sass": "^1.5.2",
"@types/node": "^14.6.0",
"puppeteer": "^9.0.0",
"stencil-tailwind-plugin": "^1.8.0",
"tailwindcss": "^3.3.5",
"tailwindcss-animate": "^1.0.7"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"loader/"
],
"types": "dist/types/index.d.ts",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/connect-ui/connect-ui.esm.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs.js"
},
"./loader": {
"types": "./loader/index.d.ts",
"import": "./loader/index.js",
"require": "./loader/index.cjs.js"
}
}
}