forked from Encaik/simple-notation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "simple-notation",
"private": true,
"version": "0.0.1",
"type": "module",
"author": {
"name": "Encaik",
"email": "[email protected]",
"url": "https://github.com/encaik"
},
"description": "动态简谱渲染库 —— 仅需文本输入,即可在您的网页上生成优美的简谱,专为现代Web设计。",
"files": [
"dist",
"types"
],
"main": "./dist/simple-notation.umd.cjs",
"module": "./dist/simple-notation.js",
"types": "./types/index.d.ts",
"exports": {
"types": "./types/index.d.ts",
"import": "./dist/simple-notation.js",
"require": "./dist/simple-notation.umd.cjs"
},
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.lib.json && vite build"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/node": "^20.14.11",
"eslint": "9.x",
"globals": "^15.8.0",
"prettier": "^3.3.3",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1",
"vite": "^5.2.10"
}
}