-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 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
80
81
82
83
84
85
86
87
{
"name": "@chialab/plasma",
"version": "0.4.1",
"description": "Generate Custom Elements wrappers for Angular, React, Svelte and Vue.",
"type": "module",
"main": "dist/index.js",
"types": "types/index.d.ts",
"bin": {
"plasma": "./dist/cli.js"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"types",
"README.md",
"LICENSE"
],
"keywords": [
"dna",
"web-components",
"angular",
"react",
"svelte",
"vue"
],
"author": "Chialab <[email protected]> (https://www.chialab.it)",
"repository": {
"type": "git",
"url": "https://github.com/chialab/plasma"
},
"license": "MIT",
"scripts": {
"clear": "rimraf 'dist' 'types' 'tsconfig.tsbuildinfo'",
"build": "yarn clear && yarn types && node scripts/build.js",
"types": "tsc",
"lint": "prettier --check . && eslint .",
"test:manifest": "custom-elements-manifest analyze --config ./test/cem.config.mjs --outdir test",
"test:generate": "./dist/cli.js test --outdir 'test/src/[framework]' -y",
"test": "vitest",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepack": "yarn build && publint"
},
"dependencies": {
"custom-elements-manifest": "^2.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@chialab/dna": "^4.0.0",
"@chialab/eslint-config": "^4.0.0",
"@chialab/manifest-analyzer-dna-plugin": "^3.0.1",
"@chialab/prettier-config": "^1.2.0",
"@custom-elements-manifest/analyzer": "^0.10.3",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@testing-library/svelte": "^5.1.0",
"@types/prompts": "^2.4.9",
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.17",
"@vitest/browser": "^2.0.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"esbuild": "^0.23.0",
"eslint": "^8.0.0",
"jsdom": "^24.0.0",
"listr2": "^8.2.4",
"playwright": "^1.44.1",
"preact": "^10.19.2",
"prettier": "^3.0.0",
"prompts": "^2.4.0",
"publint": "^0.2.5",
"react": "^18.2.0",
"react-dom": "^18.0.0",
"rimraf": "^5.0.0",
"svelte": "^5.0.0",
"typescript": "^5.0.0",
"vite": "^5.0.4",
"vitepress": "^1.0.0",
"vitest": "^2.0.0"
}
}