-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.44 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.44 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
{
"name": "wyreframe",
"version": "0.4.3",
"description": "ASCII wireframe + interaction DSL to HTML converter with scene transitions",
"author": "wickedev",
"repository": {
"type": "git",
"url": "https://github.com/wickedev/wyreframe.git"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"!src/**/__tests__",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./parser": {
"import": "./src/parser/Parser.mjs"
},
"./renderer": {
"import": "./src/renderer/Renderer.mjs"
}
},
"scripts": {
"dev": "npx serve .",
"build": "npm run res:build && npm run ts:build",
"ts:build": "tsc",
"ts:watch": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"res:build": "rescript",
"res:watch": "rescript build -w",
"res:clean": "rescript clean",
"prepublishOnly": "npm run build"
},
"keywords": [
"wireframe",
"ascii",
"dsl",
"html",
"prototype"
],
"license": "GPL-3.0",
"dependencies": {
"@rescript/core": "^1.6.1",
"rescript": "12"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.1.4",
"rescript-vitest": "^2.1.1",
"typescript": "^5.9.3",
"vitest": "^3.1.4"
}
}