-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 761 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 761 Bytes
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
{
"name": "konami-ramen",
"version": "0.5.1",
"description": "A highly sophisticated easter egg library with zero dependancies written in Typescript.",
"homepage": "https://github.com/funkeeflow/konami-ramen",
"main": "dist/index.js",
"module": "esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"esm/"
],
"scripts": {
"dev": "tsc -m esNext --outDir esm --watch",
"clean": "rimraf dist esm",
"prebuild": "npm run clean",
"build": "npm run clean && npm run build:cjs && npm run build:es",
"build:cjs": "tsc",
"build:es": "tsc -m esNext --outDir esm",
"test": "echo \"No test specified\""
},
"license": "MIT",
"devDependencies": {
"rimraf": "^3.0.2",
"typescript": "^4.3.4"
}
}