-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.9 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.9 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "textmode.synth.js",
"version": "1.6.0",
"description": "Synth engine for textmode.js",
"type": "module",
"types": "./dist/types/index.d.ts",
"main": "./dist/textmode.synth.umd.js",
"module": "./dist/textmode.synth.esm.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/textmode.synth.esm.js",
"require": "./dist/textmode.synth.umd.js"
}
},
"sideEffects": [
"./src/bootstrap.ts",
"./dist/textmode.synth.esm.js",
"./dist/textmode.synth.umd.js"
],
"scripts": {
"dev": "vite --port 5174 --host",
"build": "vite build && tsc",
"check:api-docs": "node ./scripts/check-public-api-docs.mjs",
"check:api-docs:accessors": "node ./scripts/check-public-api-docs.mjs --include-accessors",
"preview": "vite preview",
"build:docs": "typedoc",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest --coverage",
"dev:docs": "typedoc --watch",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"lint:md": "markdownlint-cli2",
"lint:md:fix": "markdownlint-cli2 --fix",
"lint:jsdoc": "eslint src --config eslint.config.js",
"lint": "npm run format:check && npm run lint:md",
"verify": "npm run format:check && npm run lint:md && npm run build && npm run test:run",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"peerDependencies": {
"textmode.js": ">=0.9.1"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@rollup/plugin-terser": "^0.4.4",
"@semantic-release/exec": "^7.1.0",
"@types/node": "^24.5.2",
"@vitest/ui": "^3.1.2",
"eslint": "^9.39.2",
"eslint-plugin-jsdoc": "^62.4.1",
"globals": "^17.1.0",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^16.4.0",
"markdownlint-cli2": "^0.20.0",
"prettier": "^3.7.4",
"semantic-release": "^24.2.9",
"terser": "^5.44.0",
"typedoc": "^0.28.13",
"typedoc-plugin-frontmatter": "^1.3.1",
"typedoc-plugin-markdown": "^4.9.0",
"typedoc-vitepress-theme": "^1.1.2",
"textmode.js": "^0.9.1",
"typescript": "~5.8.3",
"typescript-eslint": "^8.53.1",
"vite": "^7.1.7",
"vitest": "^3.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/humanbydefinition/textmode.synth.js.git"
},
"keywords": [
"ascii",
"petscii",
"textmode",
"canvas",
"webgl",
"creative-coding",
"art",
"design",
"graphics",
"ascii-art",
"live-coding",
"synthesis"
],
"author": "humanbydefinition",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/humanbydefinition/textmode.synth.js/issues"
},
"homepage": "https://code.textmode.art",
"lint-staged": {
"src/**/*.{ts,js}": "prettier --write"
},
"files": [
"dist"
]
}