generated from kbysiec/vite-vanilla-ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.6 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
{
"name": "wallet-pay",
"version": "1.1.4",
"description": "Client library for Telegram Wallet Pay",
"main": "./dist/wallet-pay.cjs",
"module": "./dist/wallet-pay.mjs",
"exports": {
".": {
"require": "./dist/wallet-pay.cjs",
"import": "./dist/wallet-pay.mjs"
}
},
"author": {
"name": "Evgenii Fedoriachenko",
"url": "https://github.com/mdwitr0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mdwitr0/wallet-pay"
},
"bugs": {
"url": "https://github.com/mdwitr0/wallet-pay/issues"
},
"keywords": [
"telegram wallet pay",
"wallet pay",
"wallet pay sdk",
"wallet pay client",
"wallet pay api",
"wallet pay typescript",
"wallet pay javascript",
"wallet pay nodejs",
"wallet pay node",
"wallet pay js",
"wallet pay ts",
"wallet pay telegram"
],
"homepage": "https://github.com/mdwitr0/wallet-pay#readme",
"types": "./dist/wallet-pay.d.ts",
"scripts": {
"dev": "vite --host",
"build": "rimraf dist && tsc && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.ts",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint:scripts": "eslint . --ext .ts",
"lint:styles": "stylelint ./**/*.{css,scss}",
"format:scripts": "prettier . --write",
"format:styles": "stylelint ./**/*.{css,scss} --fix",
"format": "npm run format:scripts && npm run format:styles",
"prepare": "husky install && husky set .husky/pre-commit 'npx lint-staged' && git add .husky/pre-commit",
"uninstall-husky": "npm uninstall husky --no-save && git config --unset core.hooksPath && npx rimraf .husky",
"release": "release-please --",
"publish": "npm run build && npm publish --access public"
},
"devDependencies": {
"@types/jsdom": "^21.1.1",
"@types/node": "^20.4.9",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@vitest/coverage-v8": "^0.34.1",
"dts-bundle-generator": "^8.0.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss": "^8.4.27",
"postcss-scss": "^4.0.6",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vitest": "^0.34.1",
"vitest-fetch-mock": "^0.2.2"
}
}