-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.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
{
"name": "@podium/store",
"version": "2.1.0",
"type": "module",
"main": "./dist/store.js",
"types": "./types/store.d.ts",
"exports": {
"types": "./types/store.d.ts",
"require": "./dist/store.cjs",
"import": "./dist/store.js"
},
"license": "MIT",
"keywords": [
"micro services",
"micro frontend",
"podium"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/podium-lib/store.git"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/podium-lib/issues"
},
"homepage": "https://podium-lib.io/",
"files": [
"dist",
"types"
],
"scripts": {
"prepublishOnly": "run-s build types",
"build": "run-p build:*",
"build:cjs": "esbuild src/store.js --outfile=dist/store.cjs --target=es2017 --format=cjs",
"build:esm": "esbuild src/store.js --outfile=dist/store.js --target=es2017",
"lint": "eslint . --ignore-pattern '/dist/'",
"lint:fix": "eslint --fix . --ignore-pattern '/dist/'",
"test": "node --test",
"types": "run-s types:tsc types:test",
"types:tsc": "tsc",
"types:test": "tsc --project tsconfig.test.json"
},
"dependencies": {
"@podium/browser": "1.3.0",
"nanostores": "0.11.3"
},
"devDependencies": {
"@podium/eslint-config": "1.0.5",
"@podium/semantic-release-config": "2.0.0",
"@podium/typescript-config": "1.0.0",
"@types/node": "20.17.11",
"esbuild": "0.23.1",
"eslint": "9.17.0",
"jsdom": "24.0.0",
"npm-run-all2": "6.2.6",
"prettier": "3.4.2",
"semantic-release": "24.1.2",
"typescript": "5.4.5"
}
}