-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.77 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
{
"name": "request-stripe",
"version": "1.0.3",
"description": "🌈 The tiny library for rendering a progress bar on top your screen",
"keywords": [
"request-stripe",
"progress-bar",
"progress",
"request-process",
"loading",
"loading-indicator",
"request-loading"
],
"type": "module",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./request-stripe": {
"require": "./dist/request-stripe.js",
"import": "./dist/request-stripe.mjs",
"default": "./dist/request-stripe.mjs"
}
},
"scripts": {
"size": "size-limit",
"clean": "rm -r dist",
"build": "npm run clean && rollup -c",
"check-types": "tsc",
"test": "vitest run",
"check-all": "npm run build && npm run check-types && npm run test && npm run size",
"release": "npm run check-all && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/faustienf/request-stripe.git"
},
"author": "@faustien",
"license": "MIT",
"bugs": {
"url": "https://github.com/faustienf/request-stripe/issues"
},
"homepage": "https://github.com/faustienf/request-stripe#readme",
"prettier": {
"singleQuote": true
},
"size-limit": [
{
"limit": "3 kB",
"path": "dist/*.mjs"
},
{
"limit": "3 kB",
"path": "dist/*.js"
}
],
"devDependencies": {
"@size-limit/file": "^8.0.0",
"rollup": "^2.77.2",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-typescript2": "^0.32.1",
"size-limit": "^8.0.0",
"vitest": "^0.20.2"
}
}