-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.71 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.71 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
{
"name": "@coderline/alphaskia",
"version": "3.2.135",
"description": "A Skia based rendering backend for alphaTab.",
"module": "./dist/alphaskia.mjs",
"typings": "./dist/alphaskia.d.ts",
"exports": {
".": {
"import": "./dist/alphaskia.mjs",
"require": "./dist/alphaskia.js",
"types": "./dist/alphaskia.d.ts"
}
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf dist",
"build": "tsc --project tsconfig.build.json && rollup -c rollup.config.js",
"start": "npm run build && concurrently --kill-others \"tsc --project tsconfig.build.json --watch\" \"rollup -c rollup.config.js -w\"",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/CoderLine/alphaSkia.git",
"directory": "lib/node/alphaskia"
},
"author": {
"name": "Daniel Kuschny"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/CoderLine/alphaSkia/issues"
},
"homepage": "https://github.com/CoderLine/alphaSkia",
"optionalDependencies": {
"@coderline/alphaskia-linux": "^3.0.0",
"@coderline/alphaskia-macos": "^3.0.0",
"@coderline/alphaskia-windows": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/chai": "^4.3.8",
"@types/mocha": "^10.0.2",
"@types/node": "^20.8.5",
"assert": "^2.1.0",
"chai": "^4.3.10",
"concurrently": "^8.2.1",
"mocha": "^10.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.0.2",
"rollup-plugin-dts": "^6.1.0",
"tsx": "^3.13.0",
"typescript": "^5.2.2"
},
"files": [
"/dist/alphaskia.js",
"/dist/alphaskia.mjs",
"/dist/alphaskia.min.js",
"/dist/alphaskia.min.mjs",
"/dist/alphaskia.d.ts"
]
}