-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.81 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "tryitonline",
"version": "1.1.0",
"license": "MIT",
"description": "An API wrapper for Try It Online",
"homepage": "https://github.com/apteryxxyz/tryitonline",
"author": {
"name": "ApteryxXYZ",
"url": "https://apteryx.xyz/"
},
"packageManager": "yarn@3.2.1",
"main": "./dist/index.js",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"files": [
"dist",
"!dist/tsconfig.tsbuildinfo",
"!dist/*.js.map"
],
"repository": {
"type": "git",
"url": "https://github.com/apteryxxyz/tryitonline.git"
},
"bugs": {
"url": "https://github.com/apteryxxyz/tryitonline/issues"
},
"scripts": {
"lint": "eslint src --fix",
"format": "prettier src --write",
"test": "node test/tio.test",
"build": "tsc && gen-esm-wrapper . ./dist/index.mjs"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"eslint-config-apteryx": "^1.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"gen-esm-wrapper": "^1.1.3",
"prettier": "^2.7.1",
"prettier-config-apteryx": "^1.0.0",
"ts-config-apteryx": "^1.0.0",
"typescript": "<4.8.0"
},
"prettier": "prettier-config-apteryx",
"eslintConfig": {
"plugins": [
"prettier"
],
"extends": [
"plugin:prettier/recommended",
"apteryx",
"apteryx/typescript"
],
"ignorePatterns": [
"test/*",
"examples/*",
"scripts/*",
"dist/*"
]
}
}