-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.24 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
{
"name": "@wallerbuilt/mycelia",
"version": "1.1.0",
"description": "An minimal UI and event-driven javascript lib",
"license": "MIT",
"author": "Josh Waller",
"type": "module",
"main": "./dist/mycelia.umd.cjs",
"module": "./dist/mycelia.js",
"types": "./dist/mycelia.d.ts",
"keywords": [
"javascript",
"typescript",
"functional",
"dom",
"event driven",
"ui"
],
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"import": "./dist/mycelia.js",
"require": "./dist/mycelia.umd.cjs"
}
},
"scripts": {
"start": "vite --port 3000",
"clean": "rm -rf dist",
"build": "npm run clean && tsc && vite build && npm run build:types",
"build:types": "tsup lib/mycelia.ts --dts-only",
"test": "vitest run",
"watch": "vitest",
"test:ui": "vitest --ui",
"preview": "vite preview",
"coverage": "vitest run --coverage",
"publish": "npm publish --access public"
},
"devDependencies": {
"@types/node": "^18.7.13",
"@vitest/ui": "^0.22.1",
"c8": "^7.13.0",
"happy-dom": "^6.0.4",
"semantic-release": "^20.1.1",
"tsup": "^6.7.0",
"typescript": "^4.6.4",
"vite": "^3.0.7",
"vitest": "^0.16.0",
"vitest-dom": "^0.0.4"
}
}