-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.37 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.37 KB
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
80
81
82
83
84
{
"name": "@ankh-studio/components",
"version": "0.1.4",
"description": "Web Components built with Stencil.js for the Ankh Studio design system",
"type": "module",
"license": "MIT",
"author": {
"name": "Matthew Van Dusen",
"url": "https://github.com/imagineux"
},
"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/components/components.esm.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/components/components.esm.js",
"require": "./dist/components/components.cjs.js"
},
"./loader": {
"types": "./loader/index.d.ts",
"import": "./loader/index.js",
"require": "./loader/index.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ankh-Studio/components.git"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build",
"dev": "stencil build --dev --watch --serve",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"generate": "stencil generate",
"lint": "npm run lint:ts && npm run lint:css",
"lint:ts": "eslint src/",
"lint:css": "stylelint 'src/**/*.css'",
"lint:fix": "eslint src/ --fix && stylelint 'src/**/*.css' --fix",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck && npm run test"
},
"devDependencies": {
"@stencil-community/postcss": "^2.2.0",
"@stencil/core": "^4.42.1",
"@stencil/eslint-plugin": "^1.1.0",
"@types/node": "^25.1.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"happy-dom": "^20.4.0",
"jsdom": "^28.0.0",
"postcss": "^8.5.6",
"postcss-custom-media": "^12.0.0",
"postcss-nesting": "^14.0.0",
"rimraf": "^6.1.2",
"stylelint": "^17.1.0",
"stylelint-config-standard": "^40.0.0",
"unplugin-stencil": "^0.4.1",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18",
"vitest-axe": "^0.1.0"
},
"dependencies": {
"@ankh-studio/themes": "^0.1.3",
"clsx": "^2.1.1"
}
}