-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.34 KB
/
package.json
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
{
"name": "@nlighten/monaco-json-transform",
"version": "1.2.5",
"description": "JSON Transform language tokenizer (and syntax highlight), hover provider and more",
"main": "./dist/index.js",
"source": "src/index.ts",
"exports": "./dist/index.js",
"sideEffects": false,
"scripts": {
"build": "tsc --build",
"test": "echo vitest --no-watch",
"test:watch": "echo vitest"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nlighten-oss/json-transform.git"
},
"files": [
"dist/"
],
"keywords": [
"monaco",
"monaco-editor",
"syntax",
"highlight",
"json-transform",
"languages",
"monarch",
"language"
],
"author": {
"name": "Eli Sherer",
"email": "eli.sherer@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nlighten-oss/json-transform/issues"
},
"homepage": "https://github.com/nlighten-oss/json-transform#readme",
"peerDependencies": {
"@nlighten/json-schema-utils": "^1.0.3",
"@nlighten/json-transform-core": "^1.8.1",
"monaco-editor": "*"
},
"devDependencies": {
"@nlighten/json-schema-utils": "^1.0.3",
"@nlighten/json-transform-core": "file://../json-transform-core",
"monaco-editor": "^0.52.2",
"prettier": "3.1.1",
"typescript": "^5.3.3"
}
}