-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
143 lines (143 loc) · 4.41 KB
/
package.json
File metadata and controls
143 lines (143 loc) · 4.41 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "textmode.js",
"version": "0.11.0",
"description": "textmode.js is a lightweight creative coding library for creating real-time ASCII art on the web.",
"type": "module",
"engines": {
"node": ">=20.8.1"
},
"types": "./dist/types/index.d.ts",
"main": "./dist/textmode.umd.js",
"module": "./dist/textmode.esm.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/textmode.esm.js",
"require": "./dist/textmode.umd.js"
},
"./loadables": {
"types": "./dist/types/exports/loadables.d.ts",
"import": "./dist/textmode.esm.js",
"require": "./dist/textmode.umd.js"
},
"./conversion": {
"types": "./dist/types/exports/conversion.d.ts",
"import": "./dist/textmode.esm.js",
"require": "./dist/textmode.umd.js"
},
"./filters": {
"types": "./dist/types/exports/filters.d.ts",
"import": "./dist/textmode.esm.js",
"require": "./dist/textmode.umd.js"
},
"./loading": {
"types": "./dist/types/exports/loading.d.ts",
"import": "./dist/textmode.esm.js",
"require": "./dist/textmode.umd.js"
},
"./input": {
"types": "./dist/types/exports/input.d.ts",
"import": "./dist/textmode.esm.js",
"require": "./dist/textmode.umd.js"
},
"./layering": {
"types": "./dist/types/exports/layering.d.ts",
"import": "./dist/textmode.esm.js",
"require": "./dist/textmode.umd.js"
},
"./plugins": {
"types": "./dist/types/exports/plugins.d.ts",
"import": "./dist/textmode.esm.js",
"require": "./dist/textmode.umd.js"
},
"./errors": {
"types": "./dist/types/exports/errors.d.ts",
"import": "./dist/textmode.esm.js",
"require": "./dist/textmode.umd.js"
}
},
"scripts": {
"dev": "vite --port 5177 --host",
"build": "vite build && tsc -p tsconfig.build.json",
"build:docs": "typedoc",
"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",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest --coverage",
"format": "prettier --write \"src/**/*.{ts,js}\"",
"format:check": "prettier --check \"src/**/*.{ts,js}\"",
"typecheck": "tsc --noEmit",
"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",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"verify": "npm run format:check && npm run lint:md && npm run build && npm run test:run",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@mapwhit/glsl-minify": "^1.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@types/jsdom": "^21.1.7",
"@types/node": "^24.0.13",
"@vitest/ui": "^3.1.2",
"all-contributors-cli": "^6.26.1",
"eslint": "^9.39.2",
"eslint-plugin-jsdoc": "^62.4.1",
"globals": "^17.1.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.4.0",
"markdownlint-cli2": "^0.20.0",
"prettier": "^3.7.4",
"semantic-release": "^24.2.9",
"terser": "^5.43.1",
"tslib": "^2.8.1",
"typedoc": "^0.28.13",
"typedoc-plugin-frontmatter": "^1.3.1",
"typedoc-plugin-markdown": "^4.9.0",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.53.1",
"vite": "^6.3.4",
"vite-plugin-glsl": "^1.5.1",
"vitest": "^3.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/humanbydefinition/textmode.js.git"
},
"keywords": [
"ascii",
"petscii",
"textmode",
"canvas",
"webgl",
"creative-coding",
"art",
"design",
"graphics"
],
"author": "humanbydefinition <hello@textmode.art> (https://code.textmode.art)",
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/humanbydefinition/textmode.js/issues"
},
"homepage": "https://code.textmode.art",
"lint-staged": {
"src/**/*.{ts,js}": "prettier --write"
},
"files": [
"dist"
]
}