-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "lazy-widgets",
"version": "0.10.14",
"description": "Typescript retained mode GUI for the HTML canvas API",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"lint": "eslint src/ --ext .ts",
"lint-fix": "eslint src/ --ext .ts --fix",
"build": "tsc",
"dev": "concurrently --kill-others 'http-server -c-1 .' 'tsc --watch --preserveWatchOutput'",
"dev-secure": "concurrently --kill-others 'http-server -S -c-1 .' 'tsc --watch --preserveWatchOutput'",
"docs": "typedoc --options typedoc.json --excludePrivate false",
"generate_theme": "node generate_theme.mjs",
"test": "mocha",
"clean-build": "shx rm -rf dist/*",
"pack": "pnpm run clean-build && pnpm run lint && pnpm run test && pnpm run docs && pnpm run build && pnpm pack"
},
"files": [
"dist/**/*.d.ts",
"dist/**/*.js",
"dist/**/*.js.map"
],
"keywords": [
"ui",
"typescript",
"canvas"
],
"author": "rafern",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rafern/lazy-widgets.git"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/jsdom": "^21.1.6",
"@types/mocha": "^10.0.7",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"canvas": "npm:@napi-rs/canvas@^0.1.59",
"chai": "^4.3.10",
"concurrently": "^8.2.2",
"eslint": "^8.54.0",
"eslint-plugin-tsdoc": "^0.2.17",
"http-server": "^14.1.1",
"jsdom": "25.0.1",
"mocha": "^10.7.3",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typedoc": "^0.26.11",
"typescript": "^5.3.2"
},
"dependencies": {
"tslib": "^2.6.2"
}
}