-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
77 lines (77 loc) · 2.17 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
{
"name": "@micro-stacks/svelte",
"version": "1.0.9",
"description": "Opinionated svelte integration for micro-stacks.",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"import": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"import": "./dist/index.mjs"
},
"./*": {
"types": "./dist/*.d.ts",
"require": "./dist/*.js",
"main": "./dist/*.js",
"module": "./dist/*.mjs",
"import": "./dist/*.mjs"
}
},
"sideEffects": false,
"scripts": {
"build": "tsup src/index.ts",
"typecheck": "tsc --noEmit --target esnext",
"dev:publish": "yalc publish --push",
"dev:build": "pnpm build && yalc publish --push",
"publish:beta": "pnpm publish --tag beta",
"lint": "pnpm lint:eslint && pnpm lint:prettier",
"lint:eslint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"lint:prettier": "prettier --check \"src/**/*.{ts,tsx}\" *.js",
"lint:prettier:fix": "prettier --write \"src/**/*.{ts,tsx}\"",
"ci:publish": "pnpm publish --no-git-checks --access public",
"ci:version": "pnpm changeset version && pnpm install --no-frozen-lockfile && git add ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/fungible-systems/micro-stacks.git"
},
"keywords": [
"stacks",
"web3",
"small-bundle"
],
"author": "Mohammad Bagher Abiat",
"license": "MIT",
"bugs": {
"url": "https://github.com/fungible-systems/micro-stacks/issues"
},
"homepage": "https://github.com/fungible-systems/micro-stacks",
"devDependencies": {
"@types/node": "18.7.15",
"prettier": "2.7.1",
"prettier-plugin-svelte": "2.7.0",
"svelte": "^3.50.0",
"tsup": "6.2.3",
"typescript": "4.8.2"
},
"dependencies": {
"@micro-stacks/client": "workspace:*",
"micro-stacks": "workspace:*"
},
"peerDependencies": {
"svelte": "^3.48.0"
},
"publishConfig": {
"access": "public"
},
"prettier": "@stacks/prettier-config"
}