-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1015 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1015 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
{
"name": "lexxy-variables",
"version": "0.0.5",
"description": "Insert and safely resolve variables in Lexxy rich text, stored as Action Text attachment chips.",
"type": "module",
"homepage": "https://github.com/anquinn/lexxy-variables",
"repository": {
"type": "git",
"url": "git+https://github.com/anquinn/lexxy-variables.git"
},
"bugs": "https://github.com/anquinn/lexxy-variables/issues",
"main": "src/lexxy/variable_extension.js",
"module": "src/lexxy/variable_extension.js",
"exports": {
".": "./src/lexxy/variable_extension.js",
"./styles": "./src/styles/lexxy_variables.css",
"./styles/lexxy_variables.css": "./src/styles/lexxy_variables.css"
},
"files": [
"src"
],
"scripts": {
"build": "node script/build_js.mjs",
"release": "node script/release.mjs",
"test:browser": "playwright test"
},
"peerDependencies": {
"@37signals/lexxy": ">=0.9.24"
},
"devDependencies": {
"@playwright/test": "^1.49.0"
},
"license": "MIT"
}