-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.34 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.34 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
{
"name": "@pinjs/cona",
"version": "0.0.8",
"description": "Web Component Nano Simple API inspired from Vue",
"repository": {
"type": "git",
"url": "https://github.com/pin705/cona"
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vite serve ./playground",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepack": "pnpm build",
"play": "jiti playground",
"release": "changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
"test:types": "tsc --noEmit --skipLibCheck"
},
"devDependencies": {
"@biomejs/biome": "^1.7.2",
"@types/node": "^20.12.7",
"@vitest/coverage-v8": "^1.5.3",
"changelogen": "^0.5.5",
"eslint": "^9.1.1",
"eslint-config-unjs": "^0.3.0-rc.7",
"jiti": "^1.21.0",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vite": "^5.3.3",
"vitest": "^1.5.3"
},
"packageManager": "pnpm@9.0.6",
"directories": {
"test": "test"
},
"author": "pin"
}