-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.84 KB
/
package.json
File metadata and controls
59 lines (59 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
{
"name": "@codemovie/code-movie-runtime",
"description": "Web runtime element for Code.Movie animations",
"keywords": [
"highlight",
"syntax",
"animation",
"morph",
"diff",
"code"
],
"version": "2.4.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "prettier . --check && eslint src test",
"types": "tsc -p tsconfig.types.json",
"build": "rm -rf dist && npm run types && esbuild src/index.ts --bundle --minify --format=esm --target=es2020 --outfile=dist/index.js ",
"build-dev": "esbuild src/index.ts --bundle --sourcemap --format=esm --target=es2020 --outfile=dist/index.js --watch",
"test": "NODE_ENV=test wtr test/**/*.test.ts --playwright --browsers firefox chromium webkit",
"test-dev": "NODE_ENV=test wtr test/**/*.test.ts --playwright --browsers chromium",
"prepublishOnly": "npm run types && npm run lint && npm run test && npm run build",
"release": "release-it"
},
"author": "peter@peterkroener.de",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.5.0",
"@esm-bundle/chai": "^4.3.4-fix.0",
"@types/mocha": "^10.0.10",
"@types/sinon": "^20.0.0",
"@web/dev-server-esbuild": "^1.0.3",
"@web/test-runner": "^0.20.0",
"@web/test-runner-playwright": "^0.11.0",
"esbuild": "^0.27.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"prettier": "^3.3.2",
"release-it": "^19.0.0",
"sinon": "^21.0.0",
"typescript": "^5.5.2",
"typescript-eslint": "^8.8.0"
},
"repository": {
"type": "git",
"url": "git://github.com/CodeMovie/code-movie-runtime.git"
},
"homepage": "https://code.movie/",
"bugs": {
"url": "https://github.com/CodeMovie/code-movie-runtime/issues"
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "22.14.0"
}
}