-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.72 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.72 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
{
"name": "@codemovie/code-movie-html",
"version": "2.0.1",
"description": "Use HTML as a DSL for Code.Movie",
"keywords": [
"highlight",
"syntax",
"animation",
"morph",
"diff",
"code"
],
"homepage": "https://code.movie/",
"repository": {
"type": "git",
"url": "git://github.com/CodeMovie/code-movie-html.git"
},
"bugs": {
"url": "https://github.com/CodeMovie/code-movie-html/issues"
},
"author": "Peter Kröner <peter@peterkroener.de> (https://www.peterkroener.de/)",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint src",
"build": "esbuild src/*.ts --format=esm --target=es2020 --metafile=meta.json --minify --bundle --external:@codemovie/code-movie --outdir=dist",
"build:dev": "esbuild src/*.ts --format=esm --target=es2020 --metafile=meta.json --bundle --external:@codemovie/code-movie --outdir=dist",
"types": "tsc",
"test": "npm run build && node --test",
"test-only": "npm run build && node --test --test-only",
"demo": "npx serve",
"prepareRelease": "npm run clean && npm run lint && npm run types && npm run test && npm run build",
"release": "release-it"
},
"devDependencies": {
"esbuild": "^0.27.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^10.0.0",
"globals": "^16.0.0",
"jsdom": "^27.1.0",
"release-it": "^19.0.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "22.17.0"
}
}