-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3 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
104
105
{
"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 -p tsconfig.json",
"check": "npm run format:check && npm run lint && npm run lint:md && npm run typecheck && npm run check:api-docs && npm run test && npm run build",
"check:api-docs": "node ./scripts/check-public-api-docs.mjs",
"check:api-docs:accessors": "node ./scripts/check-public-api-docs.mjs --include-accessors",
"dev:docs": "typedoc --watch",
"build:docs": "typedoc",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"*.{js,ts,json,md}\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"*.{js,ts,json,md}\"",
"lint:md": "markdownlint-cli2 --no-globs README.md",
"lint:md:fix": "markdownlint-cli2 --fix --no-globs README.md",
"lint": "eslint src --config eslint.config.js",
"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/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.1.2",
"eslint": "^9.39.4",
"eslint-plugin-jsdoc": "^62.9.0",
"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": "^25.0.3",
"terser": "^5.44.0",
"textmode.js": "^0.12.0",
"typedoc": "^0.28.13",
"typedoc-plugin-frontmatter": "^1.3.1",
"typedoc-plugin-markdown": "^4.9.0",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "~5.8.3",
"typescript-eslint": "^8.58.2",
"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"
]
}