-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.66 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
{
"name": "@flyyer/variables",
"version": "2.1.3",
"description": "Helper module to create a `schema` that enables Flyyer to display template's variables on https://flyyer.io for decks and templates.",
"keywords": [
"typescript",
"json-schema",
"flyyer"
],
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/variables.esm.js",
"sideEffects": false,
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"prepare": "tsdx build && husky install",
"size": "size-limit",
"analyze": "size-limit --why"
},
"author": "Patricio López Juri <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/useflyyer/flyyer-variables.git"
},
"size-limit": [
{
"path": "dist/flyyer-variables.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/flyyer-variables.esm.js",
"limit": "10 KB"
}
],
"dependencies": {
"@sinclair/typebox": "=0.18.0",
"ajv": "^8.6.3",
"ajv-formats": "^2.1.1"
},
"peerDependencies": {},
"devDependencies": {
"@flyyer/eslint-config": "^2.0.1",
"@flyyer/types": "^2.0.3",
"@size-limit/preset-small-lib": "^5.0.3",
"eslint-plugin-jest": "^24.4.0",
"husky": "^7.0.0",
"jest": "^27.2.0",
"size-limit": "^5.0.3",
"ts-jest": "^27.0.5",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"resolutions": {
"typescript": "^4.4.2",
"ts-jest": "^27.0.5",
"jest": "^27.1.1"
}
}