-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.66 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@typeup/rollup-plugin",
"version": "0.1.0-alpha.13",
"description": "Rollup plugin to import TypeUp files and parse them into a Binotype site.",
"author": "binotype",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/binotype/rollup-plugin.git"
},
"bugs": {
"url": "https://github.com/binotype/rollup-plugin/issues"
},
"homepage": "https://github.com/binotype/rollup-plugin",
"type": "module",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./types": {
"types": "./types.d.ts"
}
},
"typesVersions": {
"*": {
"types": [
"types.d.ts"
]
}
},
"files": [
"dist",
"types.d.ts",
"LICENSE",
"README.md"
],
"git": {
"tagName": "release-${version}"
},
"github": {
"release": true
},
"scripts": {
"build": "rimraf dist && npm run build:js && npm run build:types",
"build:js": "vite build",
"build:types": "tsc -p tsconfig.build.json --emitDeclarationOnly",
"clean": "rimraf dist node_modules coverage",
"lint": "biome format .",
"format": "biome format --write .",
"test": "vitest --run",
"coverage": "vitest --coverage",
"verify": "npm run build && npm run test && npm audit --omit=dev"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/node": "^25.9.2",
"@vitest/coverage-v8": "^4.1.8",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"dependencies": {
"@typeup/parser": "1.2.5-beta.20",
"mendly": "^3.1.1-beta.26"
},
"peerDependencies": {
"@typeup/dom": "^1.0.11-beta.18"
}
}