-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.02 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"version": "1.2.2",
"license": "MIT",
"homepage": "https://github.com/scenarioworld/articy-js",
"bugs": "https://github.com/scenarioworld/articy-js/issues",
"repository": {
"url": "https://github.com/scenarioworld/articy-js",
"type": "git"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=12"
},
"jest": {
"clearMocks": true
},
"scripts": {
"start": "tsdx watch",
"prebuild": "yarn peggy",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"typedoc": "typedoc",
"peggy": "peggy --plugin ./node_modules/ts-pegjs --extra-options-file ./pegconfig.json -o ./src/inline_peggy.ts ./src/inline.peggy"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "articy-js",
"author": "Brook Warner Jensen <brook@scenarioworld.ca>",
"description": "Articy (http://www.articy.com) runtime for Typescript/Javascript.",
"module": "dist/articy-js.esm.js",
"size-limit": [
{
"path": "dist/articy-js.cjs.production.min.js",
"limit": "15 KB"
},
{
"path": "dist/articy-js.esm.js",
"limit": "15 KB"
}
],
"devDependencies": {
"@reduxjs/toolkit": "^1.4.0",
"@size-limit/preset-small-lib": "^5.0.3",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"exceljs": "^4.2.1",
"husky": "^7.0.1",
"peggy": "^1.2.0",
"size-limit": "^5.0.3",
"ts-pegjs": "^1.1.1",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typedoc": "^0.21.4",
"typescript": "^4.1.2"
},
"dependencies": {},
"resolutions": {
"**/typescript": "^4.0.5",
"**/@typescript-eslint/eslint-plugin": "^4.6.1",
"**/@typescript-eslint/parser": "^4.6.1"
}
}