think/packages/constants/package.json

24 lines
446 B
JSON
Raw Normal View History

2022-02-20 11:51:55 +00:00
{
2022-03-11 05:57:55 +00:00
"name": "@think/constants",
2022-02-20 11:51:55 +00:00
"version": "1.0.0",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.js"
}
},
"sideEffects": false,
"license": "MIT",
"scripts": {
2022-05-18 08:02:29 +00:00
"build": "tsc src/*.ts --outDir lib --skipLibCheck --declaration"
2022-02-20 11:51:55 +00:00
},
2022-05-18 08:02:29 +00:00
"files": [
"lib",
"src"
],
2022-03-11 05:57:55 +00:00
"devDependencies": {
"typescript": "^4.5.5"
}
2022-05-18 08:02:29 +00:00
}