-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.12 KB
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
{
"name": "@moneytree/mt-link-javascript-sdk",
"version": "6.0.0",
"description": "Moneytree Link JavaScript SDK",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/moneytree/mt-link-javascript-sdk.git"
},
"author": "Moneytree",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && vite build && tsc --emitDeclarationOnly -p tsconfig.build.json",
"build:docs": "rm -rf docs/types && typedoc --out docs/types src",
"prepareRelease": "npm run build && git add dist && npm run build:docs && git add docs",
"createChangelog": "conventional-changelog -p conventionalcommits && git add CHANGELOG.md",
"version": "npm run prepareRelease && npm run createChangelog",
"test": "NODE_OPTIONS=--no-webstorage vitest run",
"test:dev": "NODE_OPTIONS=--no-webstorage vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"format": "prettier scripts src sample/src --write",
"lint:fix": "yarn lint --fix",
"start:docs": "docsify serve docs",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "21.2.2",
"@commitlint/config-conventional": "21.2.2",
"@eslint/js": "10.0.1",
"@types/node": "^26.1.2",
"@typescript-eslint/eslint-plugin": "8.69.0",
"@typescript-eslint/parser": "8.69.0",
"buffer": "^6.0.3",
"conventional-changelog": "8.1.3",
"conventional-changelog-conventionalcommits": "10.4.0",
"docsify-cli": "^4.4.3",
"eslint": "10.9.1",
"eslint-config-prettier": "10.1.8",
"globals": "17.11.0",
"husky": "9.1.7",
"jsdom": "^29.1.1",
"prettier": "3.9.6",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"typedoc": "^0.28.20",
"typescript": "6.0.3",
"vite": "^8.1.5",
"vite-plugin-node-polyfills": "^0.28.0",
"vitest": "^4.1.10"
},
"packageManager": "yarn@4.14.1"
}