-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 1.95 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
{
"name": "browser-monads-ts",
"version": "2.0.1",
"description": "Provide interfaces for the window, document and navigator variables of a webpage.",
"homepage": "https://github.com/danestves/browser-monads-ts#readme",
"bugs": {
"url": "https://github.com/danestves/browser-monads-ts/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/danestves/browser-monads-ts.git"
},
"license": "MIT",
"author": "Daniel Esteves",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/browser-monads-ts.cjs.js",
"import": "./dist/browser-monads-ts.es.js"
}
},
"main": "dist/browser-monads-ts.cjs.js",
"module": "dist/browser-monads-ts.es.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"directories": {
"src": "src"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "npm run clean",
"build": "run-p build:*",
"build:scripts": "vite build",
"build:types": "tsc --emitDeclarationOnly && tsc-alias",
"clean": "rimraf dist",
"dev": "vite",
"preview": "vite preview",
"prepublish": "npm run build",
"size": "size-limit"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"nothing-mock": "^1.0.4"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/node": "^17.0.21",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"size-limit": "^7.0.8",
"tsc-alias": "^1.6.4",
"typescript": "^4.6.2",
"vite": "^2.8.6",
"vite-tsconfig-paths": "^3.4.1"
},
"engines": {
"node": ">=10"
},
"size-limit": [
{
"path": "dist/browser-monads-ts.cjs.js",
"limit": "10 KB"
},
{
"path": "dist/browser-monads-ts.es.js",
"limit": "10 KB"
}
]
}