-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 843 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 843 Bytes
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
{
"name": "iv-engine",
"version": "0.0.0",
"description": "A missing re-implementation of Telegram's Instant View engine.",
"author": "qbane <andy0130tw@yahoo.com.tw>",
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
"type": "module",
"scripts": {
"typecheck": "tsc -b --noEmit",
"typecheck:dev": "tsc -b --noEmit --watch --preserveWatchOutput",
"dev": "vite-node src/index.ts",
"build": "vite build",
"test": "vitest --typecheck"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.10",
"rollup-plugin-peggy": "^6.0.0",
"typescript": "~5.8.2",
"vite": "^6.1.0",
"vite-node": "^3.0.5",
"vitest": "3.0.8"
},
"files": [
"dist"
],
"dependencies": {
"jsdom": "^26.0.0",
"locutus": "^2.0.32",
"regexp.escape": "^2.0.1"
}
}