-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "micro-ts",
"version": "1.1.1",
"repository": "https://github.com/adevinwild/micro-ts",
"author": "adevinwild",
"license": "MIT",
"files": [
"dist"
],
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"description": "A micro minimalist template to publish TypeScript packages with `microbundle`",
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"scripts": {
"build": "npm run clean && microbundle",
"dev": "microbundle watch",
"lint": "eslint ./src --ext .ts",
"clean": "rimraf dist",
"test": "jest ./tests"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"jest": "^29.4.2",
"microbundle": "^0.15.1",
"prettier": "^2.8.4",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}