-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 1.82 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": "@airdesign/ui",
"version": "0.0.17",
"private": false,
"license": "MIT",
"description": "custom components",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/aircomponents/aircomponents.esm.js",
"files": [
"dist/",
"loader/"
],
"keywords": [
"stencil",
"web-components",
"components"
],
"author": "SisyphusZheng",
"homepage": "https://github.com/SisyphusZheng/Components#readme",
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"prepare": "yarn run build"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@stencil-community/postcss": "^2.2.0",
"@stencil/core": "^4.23.0",
"@stencil/sass": "^3.0.12",
"@tailwindcss/forms": "^0.5.9",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"postcss": "^8.4.49",
"postcss-svgo": "^7.0.1",
"puppeteer": "^23.11.1",
"stencil-tailwind-plugin": "^1.8.0",
"svgo": "^3.3.2",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aircomponents/Components.git"
},
"dependencies": {
"ace-builds": "^1.37.5",
"classnames": "^2.5.1"
}
}