-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 786 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 786 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
34
35
36
{
"name": "reagami",
"version": "0.1.37",
"type": "module",
"main": "reagami.mjs",
"exports": "./reagami.mjs",
"keywords": [
"reagent",
"hiccup",
"squint",
"clojure",
"clojurescript"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"concurrently": "^9.2.1",
"esbuild": "^0.25.12",
"jsdom": "^27.1.0",
"shadow-cljs": "^3.2.1"
},
"files": [
"reagami.mjs",
"lib/reagami/core.mjs"
],
"scripts": {
"build": "pnpm squint compile --paths src",
"watch": "pnpm squint watch",
"test": "pnpm squint compile && node lib/run_tests.mjs",
"bench": "pnpm squint compile && node lib/bench_runner.mjs",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"squint-cljs": "^0.14.202"
}
}