-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 862 Bytes
/
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": "toss-expression",
"version": "0.1.2",
"description": "A tiny ponyfill for @babel/plugin-proposal-throw-expressions, the syntax from which TypeScript and VS Code do not (yet) support.",
"keywords": [
"babel",
"proposal",
"throw",
"expression",
"expressions",
"toss",
"statement",
"invalid",
"typescript",
"support",
"code",
"vs code"
],
"repository": {
"type": "git",
"url": "https://github.com/Xunnamius/toss-expression"
},
"license": "MIT",
"author": "Xunnamius",
"sideEffects": false,
"type": "commonjs",
"exports": {
".": "./dist/index.js",
"./package": "./package.json",
"./package.json": "./package.json"
},
"main": "./dist/index",
"types": "./dist/index.d.ts",
"files": [
"/dist",
"/LICENSE",
"/package.json",
"/README.md"
]
}