-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.29 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
{
"name": "@asimojs/lml",
"version": "0.0.5",
"description": "LML - List Markup Language",
"main": "dist/lml.mjs",
"types": "dist/lml.d.ts",
"typings": "dist/lml.d.ts",
"author": "Bertrand Laporte",
"license": "MIT",
"bugs": "https://github.com/asimojs/lml/issues",
"keywords": [
"jsx",
"ssr",
"dynamic page application",
"dpa",
"react",
"preact"
],
"scripts": {
"clean": "rimraf dist lib",
"build": "yarn clean && tsc && vite build && cp -R lib/*.d.ts dist && mv dist/index.d.ts dist/lml.d.ts",
"test": "vitest",
"dev": "vite",
"coverage": "vitest run --coverage",
"serve": "vite preview",
"prepublish": "yarn build && vitest run"
},
"devDependencies": {
"@preact/preset-vite": "^2.5.0",
"@testing-library/dom": "8.20.0",
"@testing-library/preact": "^3.2.3",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitest/coverage-c8": "^0.31.1",
"jsdom": "^21.1.0",
"preact": "^10.11.3",
"preact-dom": "^1.0.1",
"rimraf": "5.0.0",
"typescript": "^4.9.4",
"vite": "^4.3.8",
"vitest": "^0.31.1"
}
}