-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.84 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
{
"name": "ascii-craft",
"version": "0.1.0",
"type": "module",
"description": "A lightweight Web Component for playing TXA ASCII animations, works like a <video> tag",
"author": "z2devil",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/z2devil/ascii-craft.git"
},
"homepage": "https://github.com/z2devil/ascii-craft",
"bugs": {
"url": "https://github.com/z2devil/ascii-craft/issues"
},
"keywords": [
"ascii",
"ascii-art",
"animation",
"txa",
"web-component",
"player"
],
"main": "./dist-lib/ascii-craft.umd.js",
"module": "./dist-lib/ascii-craft.mjs",
"types": "./dist-lib/ascii-craft.d.mts",
"exports": {
".": {
"import": {
"types": "./dist-lib/ascii-craft.d.mts",
"default": "./dist-lib/ascii-craft.mjs"
},
"require": "./dist-lib/ascii-craft.umd.js"
}
},
"files": [
"dist-lib"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "vite build",
"build:lib": "vite build --config vite.lib.config.ts",
"preview": "vite preview",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset version && npm run build:lib",
"lint": "biome check src/",
"format": "biome check --write src/",
"prepare": "husky"
},
"dependencies": {
"postprocessing": "^6.36.4",
"three": "^0.170.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@changesets/cli": "^2.29.8",
"@types/three": "^0.182.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"typescript": "^5.9.3",
"vite": "^6.0.7",
"vite-plugin-dts": "^4.5.4"
},
"lint-staged": {
"src/**/*.ts": [
"biome check --write --no-errors-on-unmatched"
]
}
}