-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 944 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 944 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
{
"name": "@architect/sublime-package",
"version": "1.0.1",
"description": "Official Sublime Text package for Architect, including syntax highlighting for the Architect file format (app.arc, .arc, config.arc, and prefs.arc)",
"author": "Ryan Block <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://arc.codes",
"repository": {
"type": "git",
"url": "https://github.com/architect/sublime-package.git"
},
"bugs": {
"url": "https://github.com/architect/sublime-package/issues"
},
"scripts": {
"build": "node prefs && rm -rf node_modules/@architect arc.tmLanguage && npm i && cp node_modules/@architect/syntaxes/arc.tmLanguage ./",
"lint": "eslint . --fix"
},
"devDependencies": {
"@architect/eslint-config": "^2.0.0",
"@architect/syntaxes": "git+https://github.com/architect/syntaxes.git",
"eslint": "^7.32.0",
"plist": "^3.0.4"
},
"eslintConfig": {
"extends": "@architect/eslint-config"
}
}