-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.52 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
{
"name": "@zklau/sunett-engine",
"version": "1.0.0",
"description": "Render guitar tablature as SVG in the browser from parsed Guitar Pro song data.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/zKlau/SuNett-engine.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "restricted"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"knip": "knip --production",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"prepare": "husky",
"lint-staged": "lint-staged",
"test": "jest --passWithNoTests"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-typescript": "^7.28.5",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"babel-jest": "^30.3.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.4.1",
"knip": "^6.7.0",
"lint-staged": "^16.4.0",
"oxlint": "^1.62.0",
"prettier": "3.8.3",
"ts-jest": "^29.4.9",
"tsup": "^8.5.1",
"typescript": "^6.0.3"
}
}