-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.22 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
{
"name": "@sphyrna/tscore",
"version": "0.1.1",
"description": "Typescript utility code",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"prepack": "npmignore --auto & cp -r build/main/ dist/",
"build": "tsc",
"clean": "rm -rf ./build",
"test": "vitest --run",
"test_watch": "vitest",
"lint": "eslint ."
},
"devDependencies": {
"@types/node": "20.10.6",
"@typescript-eslint/eslint-plugin": "6.16.0",
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-sonarjs": "0.23.0",
"npmignore": "^0.3.1",
"typescript": "5.3.3",
"vitest": "1.1.0"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sdgoldstein/tscore.git"
},
"publishConfig": {
"ignore": [
"!dist/",
".clang-format",
".eslintrc.cjs",
"src/",
"tsconfig.json",
"vitest.config.ts"
]
},
"keywords": [
"Typescript",
"Core"
],
"author": "sdgoldstein",
"license": "MIT",
"bugs": {
"url": "https://github.com/sdgoldstein/tscore/issues"
},
"homepage": "https://github.com/sdgoldstein/tscore#readme"
}