-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1007 Bytes
/
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
{
"name": "@malven/modu",
"version": "2.4.8",
"description": "A simple, flexible system for working with DOM-based modules",
"main": "./dist/modu.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build && tsc --emitDeclarationOnly",
"serve": "vite preview",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"test": "vitest",
"test:dev": "vitest watch",
"test:coverage": "vitest run --coverage"
},
"author": "Chris Malven",
"license": "ISC",
"devDependencies": {
"@malven/eslint-config": "^2.0.0",
"@malven/eslint-config-typescript": "^1.0.0",
"@types/jsdom": "^21.1.1",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"c8": "^8.0.1",
"eslint": "^8.20.0",
"jsdom": "^22.1.0",
"typescript": "^4.7.4",
"vite": "^4.4.8",
"vitepress": "1.0.0-alpha.47",
"vitest": "^0.34.1"
}
}