-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.58 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.58 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
{
"name": "rw-elements-tools",
"version": "1.3.8",
"description": "Build tools for RapidWeaver Elements packs - generates properties.json and hooks.js files",
"author": "Elements Platform",
"license": "MIT",
"type": "module",
"bin": {
"rw-build": "./bin/cli.js"
},
"main": "./index.js",
"exports": {
".": "./index.js",
"./controls": "./controls/index.js",
"./properties": "./properties/index.js",
"./config": "./config.js"
},
"files": [
"bin/",
"controls/",
"properties/",
"shared-hooks/",
"build-properties.js",
"build-shared-hooks.js",
"config.js",
"index.js",
"README.md"
],
"keywords": [
"rapidweaver",
"elements",
"build-tools",
"properties",
"controls"
],
"repository": {
"type": "git",
"url": "https://github.com/realmacsoftware/RWElementsPacksTools.git"
},
"bugs": {
"url": "https://github.com/realmacsoftware/RWElementsPacksTools/issues"
},
"homepage": "https://github.com/realmacsoftware/RWElementsPacksTools#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"esbuild": "^0.21.5",
"glob": "^10.3.12",
"lodash": "^4.17.21"
},
"scripts": {
"prepublishOnly": "echo 'Ready to publish rw-elements-tools'",
"docs:generate": "node scripts/generate-docs.js",
"docs:publish": "node scripts/publish-docs.js",
"docs": "npm run docs:generate && npm run docs:publish"
},
"rw-elements-tools": {
"docsRepoPath": "/Users/ben/Developer/rapidweaver-elements-docs-api",
"docsTargetDir": "development-resources/build-tools"
}
}