forked from Sparky-Kitty/shared
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 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
{
"name": "@sanctuaryteam/shared",
"version": "0.2.5",
"repository": "https://github.com/SanctuaryTeam/shared.git",
"author": "SanctuaryTeam",
"license": "MIT",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"exports": {
".": {
"default": {
"require": "./cjs/index.js",
"import": "./esm/index.js"
}
}
},
"types": "./cjs/index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts --fix",
"tsc": "tsc --noEmit",
"prebuild": "yarn clean",
"build": "yarn build:cjs && yarn build:esm",
"postbuild": "node ./postbuild.js",
"build:cjs": "tsc -p tsconfig.build.json",
"build:esm": "tsc -p tsconfig.esm.json",
"clean": "rimraf cjs esm",
"watch": "nodemon --watch src --ext ts --exec 'yarn build'"
},
"sideEffects": false,
"dependencies": {
"@diablosnaps/common": "^0.2.5",
"lz-string": "^1.5.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"nodemon": "^3.0.1",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
}
}