-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.12 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
{
"name": "@gwservices/guardian",
"private": false,
"version": "0.0.4",
"module": "./dist/guardian.es.js",
"main": "./dist/guardian.umd.js",
"types": "./dist/main.d.ts",
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"import": "./dist/guardian.es.js",
"require": "./dist/guardian.umd.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/fluidpay/fluidpay-guardian.git"
},
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/fluidpay/fluidpay-guardian/issues"
},
"homepage": "https://github.com/fluidpay/fluidpay-guardian#readme",
"scripts": {
"build": "vite build && tsc",
"changes:add": "npx changeset",
"dev": "vite",
"eslint": "eslint --ext .js,.ts,.svelte .",
"eslint:fix": "eslint --fix",
"lint": "npm run prettier:check && npm run eslint && npm run ts",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier": "prettier",
"prettier:check": "prettier --check --plugin-search-dir=. .",
"prettier:fix": "prettier --write --plugin-search-dir=. .",
"preview": "vite preview",
"release:package": "cd dist && npm publish",
"ts": "tsc"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@changesets/cli": "^2.22.0",
"@changesets/get-github-info": "^0.5.0",
"@changesets/types": "^5.0.0",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"dotenv": "^16.0.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"path": "^0.12.7",
"prettier": "^2.6.2",
"typescript": "^4.6.3",
"vite": "^2.9.1"
},
"dependencies": {
"@fingerprintjs/fingerprintjs": "^3.3.3",
"idb": "^7.0.1",
"query-string": "^7.1.1"
}
}