2017-09-22 00:44:27 +07:00
|
|
|
{
|
2017-12-02 12:10:04 +01:00
|
|
|
"name": "@sindresorhus/is",
|
2025-12-27 11:35:17 +01:00
|
|
|
"version": "7.2.0",
|
2019-02-12 14:40:44 +07:00
|
|
|
"description": "Type check values",
|
2017-12-02 12:10:04 +01:00
|
|
|
"license": "MIT",
|
|
|
|
|
"repository": "sindresorhus/is",
|
2020-01-22 18:47:01 +07:00
|
|
|
"funding": "https://github.com/sindresorhus/is?sponsor=1",
|
2017-12-02 12:10:04 +01:00
|
|
|
"author": {
|
|
|
|
|
"name": "Sindre Sorhus",
|
|
|
|
|
"email": "sindresorhus@gmail.com",
|
2020-02-22 02:01:58 +07:00
|
|
|
"url": "https://sindresorhus.com"
|
2017-12-02 12:10:04 +01:00
|
|
|
},
|
2022-06-11 17:44:01 +07:00
|
|
|
"type": "module",
|
2024-07-10 15:41:12 +02:00
|
|
|
"exports": {
|
|
|
|
|
"types": "./distribution/index.d.ts",
|
|
|
|
|
"default": "./distribution/index.js"
|
|
|
|
|
},
|
2024-02-06 14:55:52 +07:00
|
|
|
"sideEffects": false,
|
2017-12-02 12:10:04 +01:00
|
|
|
"engines": {
|
2024-07-10 15:41:12 +02:00
|
|
|
"node": ">=18"
|
2017-12-02 12:10:04 +01:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2024-07-10 15:41:12 +02:00
|
|
|
"build": "del distribution && tsc",
|
2024-06-25 08:08:48 +08:00
|
|
|
"test": "tsc --noEmit && xo && ava",
|
2021-03-31 01:04:39 +07:00
|
|
|
"prepare": "npm run build"
|
2017-12-02 12:10:04 +01:00
|
|
|
},
|
|
|
|
|
"files": [
|
2024-07-10 15:41:12 +02:00
|
|
|
"distribution"
|
2017-12-02 12:10:04 +01:00
|
|
|
],
|
|
|
|
|
"keywords": [
|
|
|
|
|
"type",
|
|
|
|
|
"types",
|
|
|
|
|
"is",
|
|
|
|
|
"check",
|
|
|
|
|
"checking",
|
|
|
|
|
"validate",
|
|
|
|
|
"validation",
|
|
|
|
|
"utility",
|
|
|
|
|
"util",
|
|
|
|
|
"typeof",
|
|
|
|
|
"instanceof",
|
|
|
|
|
"object",
|
|
|
|
|
"assert",
|
|
|
|
|
"assertion",
|
|
|
|
|
"test",
|
|
|
|
|
"kind",
|
|
|
|
|
"primitive",
|
|
|
|
|
"verify",
|
2019-02-12 14:40:44 +07:00
|
|
|
"compare",
|
|
|
|
|
"typescript",
|
|
|
|
|
"typeguards",
|
|
|
|
|
"types"
|
2017-12-02 12:10:04 +01:00
|
|
|
],
|
|
|
|
|
"devDependencies": {
|
2024-07-10 15:41:12 +02:00
|
|
|
"@sindresorhus/tsconfig": "^6.0.0",
|
2024-06-25 08:08:48 +08:00
|
|
|
"@types/jsdom": "^21.1.7",
|
2024-07-10 15:41:12 +02:00
|
|
|
"@types/node": "^20.14.10",
|
|
|
|
|
"@types/zen-observable": "^0.8.7",
|
2024-06-25 08:08:48 +08:00
|
|
|
"ava": "^6.1.3",
|
2024-07-10 15:41:12 +02:00
|
|
|
"del-cli": "^5.1.0",
|
|
|
|
|
"expect-type": "^0.19.0",
|
|
|
|
|
"jsdom": "^24.1.0",
|
2023-05-30 21:13:40 +07:00
|
|
|
"rxjs": "^7.8.1",
|
2023-08-15 20:50:56 +02:00
|
|
|
"tempy": "^3.1.0",
|
2025-06-04 12:13:16 +03:00
|
|
|
"tsimp": "2.0.11",
|
|
|
|
|
"typescript": "5.5.3",
|
2024-07-10 15:41:12 +02:00
|
|
|
"xo": "^0.58.0",
|
2024-06-25 08:08:48 +08:00
|
|
|
"zen-observable": "^0.10.0"
|
2017-12-02 12:10:04 +01:00
|
|
|
},
|
2019-02-04 02:37:14 +07:00
|
|
|
"ava": {
|
2024-06-25 08:08:48 +08:00
|
|
|
"environmentVariables": {
|
|
|
|
|
"TSIMP_DIAG": "error"
|
|
|
|
|
},
|
2022-06-11 17:44:01 +07:00
|
|
|
"extensions": {
|
|
|
|
|
"ts": "module"
|
2024-06-25 08:08:48 +08:00
|
|
|
},
|
|
|
|
|
"nodeArguments": [
|
|
|
|
|
"--import=tsimp/import"
|
|
|
|
|
]
|
2019-02-04 02:37:14 +07:00
|
|
|
}
|
2017-09-22 00:44:27 +07:00
|
|
|
}
|