-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.97 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@getsupertab/supertab-browser",
"module": "dist/prod/index.mjs",
"main": "dist/prod/index.js",
"types": "dist/prod/index.d.ts",
"type": "module",
"files": [
"dist"
],
"sideEffects": false,
"engines": {
"node": ">=21.0.0",
"npm": ">=10.0.0"
},
"repository": "https://github.com/laterpay/supertab-browser.git",
"devDependencies": {
"@getsupertab/tapper-sdk": "^18.0.0",
"@docusaurus/core": "3.7.0",
"@docusaurus/module-type-aliases": "3.7.0",
"@docusaurus/preset-classic": "3.7.0",
"@mdx-js/react": "^3.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@swc/core": "^1.3.100",
"@tsconfig/docusaurus": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"bun-types": "latest",
"clsx": "^2.1.1",
"docusaurus-plugin-typedoc": "^1.0.5",
"eslint-config-prettier": "^10.0.1",
"happy-dom": "^16.5.3",
"husky": "^9.1.6",
"lint-staged": "^15.0.2",
"msw": "^1.3.1",
"prettier": "^3.1.0",
"prism-react-renderer": "^2.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"semantic-release": "^24.1.2",
"tsup": "^8.0.1",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.2.8"
},
"scripts": {
"prepare": "husky install",
"bundle": "bun bundle:prod && bun bundle:sbx && bun bundle:stg",
"bundle:prod": "tsup --config tsup.prod.config.ts",
"bundle:sbx": "tsup --config tsup.sbx.config.ts",
"bundle:stg": "tsup --config tsup.stg.config.ts",
"dev": "bun build ./index.ts --outdir ./dist --watch --sourcemap=external",
"demo": "bunx parcel serve --port 3000 --open --no-cache src/demos/basic.html",
"doc:start": "docusaurus start website",
"doc:build": "docusaurus build website",
"doc:swizzle": "docusaurus swizzle website",
"doc:deploy": "docusaurus deploy website",
"doc:clear": "docusaurus clear website",
"doc:serve": "docusaurus serve website",
"doc:write-translations": "docusaurus write-translations website",
"doc:write-heading-ids": "docusaurus write-heading-ids website",
"style:check": "prettier --check .",
"style:fix": "prettier --write .",
"lint:check": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts ."
},
"peerDependencies": {
"typescript": "^4.0.0 || ^5.0.0"
},
"dependencies": {
"zod": "^3.22.3"
},
"targets": {
"module": false
},
"alias": {
"process": false
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.ts": "eslint --fix"
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"ignorePatterns": [
"dist"
],
"rules": {}
},
"version": "8.8.1"
}