forked from indentinc/sanityio-referenced-by
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "@indent-oss/sanityio-referenced-by",
"author": "Natalie Marleny <natalie.marleny@indent.com>",
"license": "MIT",
"version": "0.1.4",
"description": "Plugin for viewing resources which reference a particular resource",
"homepage": "https://indent.com/blog",
"repository": {
"type": "git",
"url": "git+https://github.com/indentinc/sanityio-referenced-by.git"
},
"bugs": {
"url": "https://github.com/indentinc/sanityio-referenced-by/issues"
},
"source": "src/index.ts",
"main": "lib/index.js",
"typings": "lib/types/index.d.ts",
"files": [
"lib",
"index.js",
"sanity.json"
],
"scripts": {
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 src/**/*.css lib/",
"build": "yarn clean && tsc -m commonjs && yarn copy-files",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts'"
},
"prettier": {
"semi": false,
"singleQuote": true,
"bracketSpacing": false,
"printWidth": 100
},
"devDependencies": {
"@types/node": "^17.0.18",
"copyfiles": "^2.4.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0",
"typescript": "^4.5.5"
},
"keywords": [
"sanity",
"cms",
"headless",
"references"
]
}